pub trait ClassLike {
// Provided methods
fn unique_name(&self) -> String { ... }
fn attributes(&self) -> Attributes<'_> ⓘ { ... }
fn methods(&self) -> Methods<'_> ⓘ { ... }
}Provided Methods§
fn unique_name(&self) -> String
fn unique_name(&self) -> String
Mangled type name
fn attributes(&self) -> Attributes<'_> ⓘ
fn attributes(&self) -> Attributes<'_> ⓘ
Iterator over the different crate::pdb::types::Attribute defined in this
class-like type
fn methods(&self) -> Methods<'_> ⓘ
fn methods(&self) -> Methods<'_> ⓘ
Iterator over the different crate::pdb::types::Method implemented in this
class-like type