pub struct ModifierType {
pub underlying_type: TypeIndex,
pub constant: bool,
pub volatile: bool,
pub unaligned: bool,
}Expand description
The information parsed from a type record with kind LF_MODIFIER.
Fields§
§underlying_type: TypeIndex§constant: bool§volatile: bool§unaligned: boolTrait Implementations§
Source§impl Clone for ModifierType
impl Clone for ModifierType
Source§fn clone(&self) -> ModifierType
fn clone(&self) -> ModifierType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModifierType
impl Debug for ModifierType
Source§impl PartialEq for ModifierType
impl PartialEq for ModifierType
impl Copy for ModifierType
impl Eq for ModifierType
impl StructuralPartialEq for ModifierType
Auto Trait Implementations§
impl Freeze for ModifierType
impl RefUnwindSafe for ModifierType
impl Send for ModifierType
impl Sync for ModifierType
impl Unpin for ModifierType
impl UnwindSafe for ModifierType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more