pub struct ExtensionNodeRef<'a> {
pub key: &'a Nibbles,
pub child: &'a [u8],
}
Expand description
Reference to the extension node. See ExtensionNode from more information.
Fields§
§key: &'a Nibbles
The key for this extension node.
child: &'a [u8]
A pointer to the child node.
Implementations§
Source§impl<'a> ExtensionNodeRef<'a>
impl<'a> ExtensionNodeRef<'a>
Trait Implementations§
Source§impl Debug for ExtensionNodeRef<'_>
impl Debug for ExtensionNodeRef<'_>
Auto Trait Implementations§
impl<'a> Freeze for ExtensionNodeRef<'a>
impl<'a> RefUnwindSafe for ExtensionNodeRef<'a>
impl<'a> Send for ExtensionNodeRef<'a>
impl<'a> Sync for ExtensionNodeRef<'a>
impl<'a> Unpin for ExtensionNodeRef<'a>
impl<'a> UnwindSafe for ExtensionNodeRef<'a>
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