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

#[repr(C)]
pub struct TypeDescriptor { pub vftable: Ptr, pub spare: Ptr<CStr>, pub name: [u8; 0], }

Represents the C++ std::type_info class returned by the typeid operator.

Fields

Vtable of the type_info class.

Used to keep the demangled name returned by type_info::name().

Inlined mangled type name, nul terminated.

Trait Implementations

impl Debug for TypeDescriptor
[src]

Formats the value using the given formatter. Read more

impl Pod for TypeDescriptor
[src]

Auto Trait Implementations