Struct pelite::pe32::msvc::RTTIClassHierarchyDescriptor[][src]

#[repr(C)]
pub struct RTTIClassHierarchyDescriptor { pub signature: u32, pub attributes: u32, pub num_base_classes: u32, pub base_class_array: Ptr<[Ptr<RTTIBaseClassDescriptor>]>, }

Class Hierarchy Descriptor.

Describes the inheritance hierarchy of the class, it is shared by all COLs.

Fields

Always zero?

Bit 0 set = multiple inheritance, bit 1 set = virtual inheritance.

Number of classes in base_class_array.

Pointer to an array of pointers to base class descriptors.

Trait Implementations

impl Copy for RTTIClassHierarchyDescriptor
[src]

impl Clone for RTTIClassHierarchyDescriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RTTIClassHierarchyDescriptor
[src]

Formats the value using the given formatter. Read more

impl Pod for RTTIClassHierarchyDescriptor
[src]

Auto Trait Implementations