Struct pdb::TypeProperties[][src]

pub struct TypeProperties(_);

Implementations

impl TypeProperties[src]

pub fn packed(self) -> bool[src]

Indicates if a type is packed via #pragma pack or similar.

pub fn constructors(self) -> bool[src]

Indicates if a type has constructors or destructors.

pub fn overloaded_operators(self) -> bool[src]

Indicates if a type has any overloaded operators.

pub fn is_nested_type(self) -> bool[src]

Indicates if a type is a nested type, e.g. a union defined inside a class.

pub fn contains_nested_types(self) -> bool[src]

Indicates if a type contains nested types.

pub fn overloaded_assignment(self) -> bool[src]

Indicates if a class has overloaded the assignment operator.

pub fn overloaded_casting(self) -> bool[src]

pub fn forward_reference(self) -> bool[src]

Indicates if a type is a forward reference, i.e. an incomplete Type that serves as a placeholder until a complete Type can be built. This is necessary for e.g. self-referential data structures, but other more common declaration/definition idioms can cause forward references too.

pub fn scoped_definition(self) -> bool[src]

pub fn has_unique_name(self) -> bool[src]

pub fn sealed(self) -> bool[src]

pub fn hfa(self) -> u8[src]

pub fn intrinsic_type(self) -> bool[src]

pub fn mocom(self) -> u8[src]

Trait Implementations

impl Clone for TypeProperties[src]

impl Copy for TypeProperties[src]

impl Debug for TypeProperties[src]

impl Eq for TypeProperties[src]

impl PartialEq<TypeProperties> for TypeProperties[src]

impl StructuralEq for TypeProperties[src]

impl StructuralPartialEq for TypeProperties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.