[][src]Struct utreexo::Forest

pub struct Forest { /* fields omitted */ }

Implementation of a merkle forest

Methods

impl Forest[src]

pub fn leaves(&self) -> usize[src]

Returns the number of leaves currently stored in forest

pub fn len(&self) -> usize[src]

Returns total number of nodes in forest

pub fn is_empty(&self) -> bool[src]

Returns true if the forest is empty, false otherwise

pub fn insert<T: AsRef<[u8]>>(&mut self, value: T)[src]

Inserts a new value in forest

pub fn extend<T: AsRef<[u8]>>(&mut self, values: &[T])[src]

Batch inserts new values in forest

pub fn prove<T: AsRef<[u8]>>(&self, value: T) -> Option<Proof>[src]

Generates inclusion proof of given leaf value

pub fn verify(&self, proof: &Proof) -> bool[src]

Verifies inclusion proof

Trait Implementations

impl Debug for Forest[src]

impl PartialEq<Forest> for Forest[src]

impl Eq for Forest[src]

impl Default for Forest[src]

Auto Trait Implementations

impl Unpin for Forest

impl Send for Forest

impl Sync for Forest

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]