[−][src]Struct pdb::TypeProperties
pub struct TypeProperties(_);
Methods
impl TypeProperties[src]
impl TypePropertiespub fn packed(&self) -> bool[src]
pub fn packed(&self) -> boolIndicates if a type is packed via #pragma pack or similar.
pub fn constructors(&self) -> bool[src]
pub fn constructors(&self) -> boolIndicates if a type has constructors or destructors.
pub fn overloaded_operators(&self) -> bool[src]
pub fn overloaded_operators(&self) -> boolIndicates if a type has any overloaded operators.
pub fn is_nested_type(&self) -> bool[src]
pub fn is_nested_type(&self) -> boolIndicates if a type is a nested type, e.g. a union defined inside a class.
pub fn contains_nested_types(&self) -> bool[src]
pub fn contains_nested_types(&self) -> boolIndicates if a type contains nested types.
pub fn overloaded_assignment(&self) -> bool[src]
pub fn overloaded_assignment(&self) -> boolIndicates if a class has overloaded the assignment operator.
pub fn overloaded_casting(&self) -> bool[src]
pub fn overloaded_casting(&self) -> boolpub fn forward_reference(&self) -> bool[src]
pub fn forward_reference(&self) -> boolIndicates 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 scoped_definition(&self) -> boolpub fn has_unique_name(&self) -> bool[src]
pub fn has_unique_name(&self) -> boolpub fn sealed(&self) -> bool[src]
pub fn sealed(&self) -> boolpub fn hfa(&self) -> u8[src]
pub fn hfa(&self) -> u8pub fn intrinsic_type(&self) -> bool[src]
pub fn intrinsic_type(&self) -> boolpub fn mocom(&self) -> u8[src]
pub fn mocom(&self) -> u8Trait Implementations
impl Debug for TypeProperties[src]
impl Debug for TypePropertiesfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Copy for TypeProperties[src]
impl Copy for TypePropertiesimpl Clone for TypeProperties[src]
impl Clone for TypePropertiesfn clone(&self) -> TypeProperties[src]
fn clone(&self) -> TypePropertiesReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for TypeProperties[src]
impl PartialEq for TypePropertiesfn eq(&self, other: &TypeProperties) -> bool[src]
fn eq(&self, other: &TypeProperties) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TypeProperties) -> bool[src]
fn ne(&self, other: &TypeProperties) -> boolThis method tests for !=.
impl Eq for TypeProperties[src]
impl Eq for TypePropertiesAuto Trait Implementations
impl Send for TypeProperties
impl Send for TypePropertiesimpl Sync for TypeProperties
impl Sync for TypeProperties