pub enum SubkeyIndex {
FastLeaf(Vec<LfElement>),
HashLeaf(Vec<LhElement>),
IndexLeaf(Vec<CellOffset>),
RootIndex(Vec<CellOffset>),
}Expand description
Parsed subkey index — dispatches across LF, LH, LI, RI.
Variants§
FastLeaf(Vec<LfElement>)
HashLeaf(Vec<LhElement>)
IndexLeaf(Vec<CellOffset>)
RootIndex(Vec<CellOffset>)
Implementations§
Trait Implementations§
Source§impl Clone for SubkeyIndex
impl Clone for SubkeyIndex
Source§fn clone(&self) -> SubkeyIndex
fn clone(&self) -> SubkeyIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SubkeyIndex
impl RefUnwindSafe for SubkeyIndex
impl Send for SubkeyIndex
impl Sync for SubkeyIndex
impl Unpin for SubkeyIndex
impl UnsafeUnpin for SubkeyIndex
impl UnwindSafe for SubkeyIndex
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