[][src]Struct pdb::TypeProperties

pub struct TypeProperties(_);

Methods

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 Eq for TypeProperties[src]

impl Copy for TypeProperties[src]

impl PartialEq<TypeProperties> for TypeProperties[src]

impl Clone for TypeProperties[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TypeProperties[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.