Struct zk_kit_pmt::tree::MerkleProof
source · pub struct MerkleProof<H: Hasher>(pub Vec<(H::Fr, u8)>);
Expand description
The Merkle proof structure
Tuple Fields§
§0: Vec<(H::Fr, u8)>
Implementations§
source§impl<H: Hasher> MerkleProof<H>
impl<H: Hasher> MerkleProof<H>
sourcepub fn compute_root_from(&self, leaf: &H::Fr) -> H::Fr
pub fn compute_root_from(&self, leaf: &H::Fr) -> H::Fr
Computes the Merkle root by iteratively hashing specified Merkle proof with specified leaf
sourcepub fn leaf_index(&self) -> usize
pub fn leaf_index(&self) -> usize
Computes the leaf index corresponding to a Merkle proof
sourcepub fn get_path_index(&self) -> Vec<u8> ⓘ
pub fn get_path_index(&self) -> Vec<u8> ⓘ
Returns the path indexes forming a Merkle Proof
sourcepub fn get_path_elements(&self) -> Vec<H::Fr>
pub fn get_path_elements(&self) -> Vec<H::Fr>
Returns the path elements forming a Merkle proof
Trait Implementations§
source§impl<H: Clone + Hasher> Clone for MerkleProof<H>
impl<H: Clone + Hasher> Clone for MerkleProof<H>
source§fn clone(&self) -> MerkleProof<H>
fn clone(&self) -> MerkleProof<H>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<H: Eq + Hasher> Eq for MerkleProof<H>
impl<H: Hasher> StructuralPartialEq for MerkleProof<H>
Auto Trait Implementations§
impl<H> Freeze for MerkleProof<H>
impl<H> RefUnwindSafe for MerkleProof<H>
impl<H> Send for MerkleProof<H>
impl<H> Sync for MerkleProof<H>
impl<H> Unpin for MerkleProof<H>
impl<H> UnwindSafe for MerkleProof<H>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more