pub struct OrgDirective {
pub offset: u64,
pub fill: u8,
pub span: Span,
}Expand description
Org directive (.org offset[, fill]).
Fields§
§offset: u64Target byte offset.
fill: u8Fill byte for padding (default 0x00).
span: SpanSource location.
Trait Implementations§
Source§impl Clone for OrgDirective
impl Clone for OrgDirective
Source§fn clone(&self) -> OrgDirective
fn clone(&self) -> OrgDirective
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 OrgDirective
impl Debug for OrgDirective
Source§impl PartialEq for OrgDirective
impl PartialEq for OrgDirective
impl Eq for OrgDirective
impl StructuralPartialEq for OrgDirective
Auto Trait Implementations§
impl Freeze for OrgDirective
impl RefUnwindSafe for OrgDirective
impl Send for OrgDirective
impl Sync for OrgDirective
impl Unpin for OrgDirective
impl UnwindSafe for OrgDirective
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