[−][src]Struct pdb::ClassType
pub struct ClassType<'t> {
pub kind: ClassKind,
pub count: u16,
pub properties: TypeProperties,
pub fields: Option<TypeIndex>,
pub derived_from: Option<TypeIndex>,
pub vtable_shape: Option<TypeIndex>,
pub size: u16,
pub name: RawString<'t>,
}The information parsed from a type record with kind
LF_CLASS, LF_CLASS_ST, LF_STRUCTURE, LF_STRUCTURE_ST or LF_INTERFACE.
Fields
kind: ClassKind
count: u16
Count of number of elements in this class
properties: TypeProperties
fields: Option<TypeIndex>
Type index which describes the fields of this class
derived_from: Option<TypeIndex>
Type index which describes the class from which this class is derived, if any
vtable_shape: Option<TypeIndex>
Type index which describes the shape of the vtable for this class, if any
size: u16
name: RawString<'t>
Trait Implementations
impl<'t> Debug for ClassType<'t>[src]
impl<'t> Debug for ClassType<'t>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'t> Clone for ClassType<'t>[src]
impl<'t> Clone for ClassType<'t>fn clone(&self) -> ClassType<'t>[src]
fn clone(&self) -> ClassType<'t>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<'t> PartialEq for ClassType<'t>[src]
impl<'t> PartialEq for ClassType<'t>fn eq(&self, other: &ClassType<'t>) -> bool[src]
fn eq(&self, other: &ClassType<'t>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ClassType<'t>) -> bool[src]
fn ne(&self, other: &ClassType<'t>) -> boolThis method tests for !=.
impl<'t> Eq for ClassType<'t>[src]
impl<'t> Eq for ClassType<'t>