pub struct ModuleDataDirective {
pub kind: DataDirectiveKind,
pub values: Vec<String>,
pub raw: String,
}Expand description
Raw representation of the .b8/.b16/... module-level data directives.
Fields§
§kind: DataDirectiveKind§values: Vec<String>§raw: StringTrait Implementations§
Source§impl Clone for ModuleDataDirective
impl Clone for ModuleDataDirective
Source§fn clone(&self) -> ModuleDataDirective
fn clone(&self) -> ModuleDataDirective
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 ModuleDataDirective
impl Debug for ModuleDataDirective
Source§impl PartialEq for ModuleDataDirective
impl PartialEq for ModuleDataDirective
impl Eq for ModuleDataDirective
impl StructuralPartialEq for ModuleDataDirective
Auto Trait Implementations§
impl Freeze for ModuleDataDirective
impl RefUnwindSafe for ModuleDataDirective
impl Send for ModuleDataDirective
impl Sync for ModuleDataDirective
impl Unpin for ModuleDataDirective
impl UnwindSafe for ModuleDataDirective
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