[−][src]Struct pdb::TypeProperties
pub struct TypeProperties(_);
Methods
impl TypeProperties
[src]
impl TypeProperties
pub fn packed(&self) -> bool
[src]
pub fn packed(&self) -> bool
Indicates if a type is packed via #pragma pack
or similar.
pub fn constructors(&self) -> bool
[src]
pub fn constructors(&self) -> bool
Indicates if a type has constructors or destructors.
pub fn overloaded_operators(&self) -> bool
[src]
pub fn overloaded_operators(&self) -> bool
Indicates if a type has any overloaded operators.
pub fn is_nested_type(&self) -> bool
[src]
pub fn is_nested_type(&self) -> bool
Indicates 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) -> bool
Indicates if a type contains nested types.
pub fn overloaded_assignment(&self) -> bool
[src]
pub fn overloaded_assignment(&self) -> bool
Indicates if a class has overloaded the assignment operator.
pub fn overloaded_casting(&self) -> bool
[src]
pub fn overloaded_casting(&self) -> bool
pub fn forward_reference(&self) -> bool
[src]
pub fn forward_reference(&self) -> bool
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 scoped_definition(&self) -> bool
pub fn has_unique_name(&self) -> bool
[src]
pub fn has_unique_name(&self) -> bool
pub fn sealed(&self) -> bool
[src]
pub fn sealed(&self) -> bool
pub fn hfa(&self) -> u8
[src]
pub fn hfa(&self) -> u8
pub fn intrinsic_type(&self) -> bool
[src]
pub fn intrinsic_type(&self) -> bool
pub fn mocom(&self) -> u8
[src]
pub fn mocom(&self) -> u8
Trait Implementations
impl Debug for TypeProperties
[src]
impl Debug for TypeProperties
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Copy for TypeProperties
[src]
impl Copy for TypeProperties
impl Clone for TypeProperties
[src]
impl Clone for TypeProperties
fn clone(&self) -> TypeProperties
[src]
fn clone(&self) -> TypeProperties
Returns 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 TypeProperties
fn eq(&self, other: &TypeProperties) -> bool
[src]
fn eq(&self, other: &TypeProperties) -> bool
This 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) -> bool
This method tests for !=
.
impl Eq for TypeProperties
[src]
impl Eq for TypeProperties
Auto Trait Implementations
impl Send for TypeProperties
impl Send for TypeProperties
impl Sync for TypeProperties
impl Sync for TypeProperties