Struct zcash_history::Entry

source ·
pub struct Entry<V: Version> { /* private fields */ }
Expand description

MMR Entry.

Implementations§

source§

impl<V: Version> Entry<V>

source

pub fn new(data: V::NodeData, left: EntryLink, right: EntryLink) -> Self

New entry of type node.

source

pub fn new_leaf(data: V::NodeData) -> Self

Creates a new leaf.

source

pub fn complete(&self) -> bool

Returns if is this node complete (has total of 2^N leaves)

source

pub fn leaf_count(&self) -> u64

Number of leaves under this node.

source

pub fn leaf(&self) -> bool

Is this node a leaf.

source

pub fn left(&self) -> Result<EntryLink, Error>

Left child

source

pub fn right(&self) -> Result<EntryLink, Error>

Right child.

source

pub fn read<R: Read>(consensus_branch_id: u32, r: &mut R) -> Result<Self>

Read from byte representation.

source

pub fn write<W: Write>(&self, w: &mut W) -> Result<()>

Write to byte representation.

source

pub fn from_bytes<T: AsRef<[u8]>>( consensus_branch_id: u32, buf: T ) -> Result<Self>

Convert from byte representation.

Trait Implementations§

source§

impl<V: Debug + Version> Debug for Entry<V>
where V::NodeData: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<V: Version> Display for Entry<V>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<V> RefUnwindSafe for Entry<V>

§

impl<V> Send for Entry<V>
where <V as Version>::NodeData: Send,

§

impl<V> Sync for Entry<V>
where <V as Version>::NodeData: Sync,

§

impl<V> Unpin for Entry<V>
where <V as Version>::NodeData: Unpin,

§

impl<V> UnwindSafe for Entry<V>
where <V as Version>::NodeData: 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> 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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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>,

§

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.