Struct pdb::ClassType [] [src]

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

Count of number of elements in this class

Type index which describes the fields of this class

Type index which describes the class from which this class is derived, if any

Type index which describes the shape of the vtable for this class, if any

Trait Implementations

impl<'t> Debug for ClassType<'t>
[src]

[src]

Formats the value using the given formatter.

impl<'t> Clone for ClassType<'t>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'t> PartialEq for ClassType<'t>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'t> Eq for ClassType<'t>
[src]