pub enum Load {
Bool,
Num {
from: NumKind,
to: NumKind,
},
Enum,
Str,
Bytes,
Struct(usize),
List(Box<ElemPlan>),
Map(Box<MapPlan>),
Union(Box<UnionPlan>),
}Expand description
How to materialize a reader-visible value from writer bytes.
Variants§
Bool
Num
Enum
Str
Bytes
Struct(usize)
Plan index. In a field slot this reads a u32 offset to the block; as a list element the block is inline at the element position.
List(Box<ElemPlan>)
Map(Box<MapPlan>)
Union(Box<UnionPlan>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Load
impl RefUnwindSafe for Load
impl Send for Load
impl Sync for Load
impl Unpin for Load
impl UnsafeUnpin for Load
impl UnwindSafe for Load
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