Struct ReferenceNodeCodec

Source
pub struct ReferenceNodeCodec<H>(/* private fields */);
Expand description

Simple reference implementation of a NodeCodec.

Trait Implementations§

Source§

impl<H: Clone> Clone for ReferenceNodeCodec<H>

Source§

fn clone(&self) -> ReferenceNodeCodec<H>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<H: Default> Default for ReferenceNodeCodec<H>

Source§

fn default() -> ReferenceNodeCodec<H>

Returns the “default value” for a type. Read more
Source§

impl<H: Hasher> NodeCodec for ReferenceNodeCodec<H>

Source§

type Error = Error

Codec error type.
Source§

type HashOut = <H as Hasher>::Out

Output type of encoded node hasher.
Source§

fn hashed_null_node() -> <H as Hasher>::Out

Get the hashed null node.
Source§

fn decode_plan(data: &[u8]) -> Result<NodePlan, Self::Error>

Decode bytes to a NodePlan. Returns Self::E on failure.
Source§

fn is_empty_node(data: &[u8]) -> bool

Check if the provided bytes correspond to the codecs “empty” node.
Source§

fn empty_node() -> &'static [u8]

Returns an encoded empty node.
Source§

fn leaf_node( partial: impl Iterator<Item = u8>, number_nibble: usize, value: Value<'_>, ) -> Vec<u8>

Returns an encoded leaf node Read more
Source§

fn extension_node( partial: impl Iterator<Item = u8>, number_nibble: usize, child: ChildReference<Self::HashOut>, ) -> Vec<u8>

Returns an encoded extension node Read more
Source§

fn branch_node( children: impl Iterator<Item = impl Borrow<Option<ChildReference<Self::HashOut>>>>, maybe_value: Option<Value<'_>>, ) -> Vec<u8>

Returns an encoded branch node. Takes an iterator yielding ChildReference<Self::HashOut> and an optional value.
Source§

fn branch_node_nibbled( _partial: impl Iterator<Item = u8>, _number_nibble: usize, _children: impl Iterator<Item = impl Borrow<Option<ChildReference<Self::HashOut>>>>, _maybe_value: Option<Value<'_>>, ) -> Vec<u8>

Returns an encoded branch node with a possible partial path. number_nibble is the partial path length as in extension_node.
Source§

const ESCAPE_HEADER: Option<u8> = None

Escape header byte sequence to indicate next node is a branch or leaf with hash of value, followed by the value node.
Source§

fn decode<'a>(data: &'a [u8]) -> Result<Node<'a>, Self::Error>

Decode bytes to a Node. Returns Self::E on failure.

Auto Trait Implementations§

§

impl<H> Freeze for ReferenceNodeCodec<H>

§

impl<H> RefUnwindSafe for ReferenceNodeCodec<H>
where H: RefUnwindSafe,

§

impl<H> Send for ReferenceNodeCodec<H>
where H: Send,

§

impl<H> Sync for ReferenceNodeCodec<H>
where H: Sync,

§

impl<H> Unpin for ReferenceNodeCodec<H>
where H: Unpin,

§

impl<H> UnwindSafe for ReferenceNodeCodec<H>
where H: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.