pub struct InternalEntry {
pub key: Vec<u8>,
}Expand description
One internal-node pivot entry in the decoded in-memory
representation. The corresponding right child is stored in
DecodedNode::children at index i + 1.
Fields§
§key: Vec<u8>The pivot key.
Trait Implementations§
Source§impl Clone for InternalEntry
impl Clone for InternalEntry
Source§fn clone(&self) -> InternalEntry
fn clone(&self) -> InternalEntry
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 InternalEntry
impl RefUnwindSafe for InternalEntry
impl Send for InternalEntry
impl Sync for InternalEntry
impl Unpin for InternalEntry
impl UnsafeUnpin for InternalEntry
impl UnwindSafe for InternalEntry
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