pub struct FillDirective {
pub count: u32,
pub size: u8,
pub value: i64,
pub span: Span,
}Expand description
Fill directive (.fill count, size, value).
Fields§
§count: u32Number of repetitions.
size: u8Size of each unit in bytes (1–8).
value: i64Fill value (stored as i64, truncated to size bytes in little-endian).
span: SpanSource location.
Trait Implementations§
Source§impl Clone for FillDirective
impl Clone for FillDirective
Source§fn clone(&self) -> FillDirective
fn clone(&self) -> FillDirective
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 FillDirective
impl Debug for FillDirective
Source§impl PartialEq for FillDirective
impl PartialEq for FillDirective
impl Eq for FillDirective
impl StructuralPartialEq for FillDirective
Auto Trait Implementations§
impl Freeze for FillDirective
impl RefUnwindSafe for FillDirective
impl Send for FillDirective
impl Sync for FillDirective
impl Unpin for FillDirective
impl UnwindSafe for FillDirective
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