pub enum ValuePlan {
Inline(Range<usize>),
Node(Range<usize>),
}
Expand description
Plan for value representation in NodePlan
.
Variants§
Inline(Range<usize>)
Range for byte representation in encoded node.
Node(Range<usize>)
Range for hash in encoded node and original value size.
Implementations§
Trait Implementations§
source§impl PartialEq<ValuePlan> for ValuePlan
impl PartialEq<ValuePlan> for ValuePlan
impl Eq for ValuePlan
impl StructuralEq for ValuePlan
impl StructuralPartialEq for ValuePlan
Auto Trait Implementations§
impl RefUnwindSafe for ValuePlan
impl Send for ValuePlan
impl Sync for ValuePlan
impl Unpin for ValuePlan
impl UnwindSafe for ValuePlan
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