pub struct SpaceDirective {
pub size: u32,
pub fill: u8,
pub span: Span,
}Expand description
Space directive (.space n / .skip n).
Fields§
§size: u32Number of bytes to reserve.
fill: u8Fill byte value (default 0x00).
span: SpanSource location.
Trait Implementations§
Source§impl Clone for SpaceDirective
impl Clone for SpaceDirective
Source§fn clone(&self) -> SpaceDirective
fn clone(&self) -> SpaceDirective
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 SpaceDirective
impl Debug for SpaceDirective
Source§impl PartialEq for SpaceDirective
impl PartialEq for SpaceDirective
impl Eq for SpaceDirective
impl StructuralPartialEq for SpaceDirective
Auto Trait Implementations§
impl Freeze for SpaceDirective
impl RefUnwindSafe for SpaceDirective
impl Send for SpaceDirective
impl Sync for SpaceDirective
impl Unpin for SpaceDirective
impl UnwindSafe for SpaceDirective
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