[][src]Struct ckb_merkle_mountain_range::util::MemMMR

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

Methods

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

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

pub fn store(&self) -> &MemStore<T>[src]

pub fn get_root(&self) -> Result<T>[src]

pub fn push(&mut self, elem: T) -> Result<u64>[src]

pub fn gen_proof(&self, pos_list: Vec<u64>) -> Result<MerkleProof<T, M>>[src]

Trait Implementations

impl<T: Clone + Debug + PartialEq, M: Merge<Item = T>> Default for MemMMR<T, M>[src]

Auto Trait Implementations

impl<T, M> !RefUnwindSafe for MemMMR<T, M>

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

impl<T, M> !Sync for MemMMR<T, M>

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

impl<T, M> UnwindSafe for MemMMR<T, M> where
    M: UnwindSafe,
    T: RefUnwindSafe + UnwindSafe

Blanket Implementations

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

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

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

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.