[][src]Struct ckb_merkle_mountain_range::MerkleProof

pub struct MerkleProof<T, M> { /* fields omitted */ }

Methods

impl<T: PartialEq + Debug, M: Merge<Item = T>> MerkleProof<T, M>[src]

pub fn new(mmr_size: u64, proof: Vec<T>) -> Self[src]

pub fn verify(&self, root: T, pos: u64, elem: T) -> Result<bool>[src]

Trait Implementations

impl<T: Debug, M: Debug> Debug for MerkleProof<T, M>[src]

Auto Trait Implementations

impl<T, M> Send for MerkleProof<T, M> where
    M: Send,
    T: Send

impl<T, M> Sync for MerkleProof<T, M> where
    M: Sync,
    T: Sync

impl<T, M> Unpin for MerkleProof<T, M> where
    M: Unpin,
    T: Unpin

impl<T, M> UnwindSafe for MerkleProof<T, M> where
    M: UnwindSafe,
    T: UnwindSafe

impl<T, M> RefUnwindSafe for MerkleProof<T, M> where
    M: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

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

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