pub struct ElemPlan {
pub load: Load,
pub stride: u32,
pub align: u32,
pub struct_inline: bool,
}Fields§
§load: Load§stride: u32Element stride and alignment in the writer’s layout.
align: u32§struct_inline: boolTrue when elements are fixed-size struct blocks stored inline (the element position IS the block). False when the element position holds a u32 offset to the value (strings, bytes, nested lists, and variable-size packed struct elements).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ElemPlan
impl RefUnwindSafe for ElemPlan
impl Send for ElemPlan
impl Sync for ElemPlan
impl Unpin for ElemPlan
impl UnsafeUnpin for ElemPlan
impl UnwindSafe for ElemPlan
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