[][src]Struct nimiq_blockchain::transaction_store::TransactionStore

pub struct TransactionStore<'env> { /* fields omitted */ }

Methods

impl<'env> TransactionStore<'env>[src]

pub fn new(env: &'env Environment) -> Self[src]

pub fn get_by_hash(
    &self,
    transaction_hash: &Blake2bHash,
    txn_option: Option<&Transaction>
) -> Option<TransactionInfo>
[src]

pub fn get_by_sender(
    &self,
    sender: &Address,
    limit: usize,
    txn_option: Option<&Transaction>
) -> Vec<TransactionInfo>
[src]

pub fn get_by_recipient(
    &self,
    recipient: &Address,
    limit: usize,
    txn_option: Option<&Transaction>
) -> Vec<TransactionInfo>
[src]

pub fn put(&self, block: &Block, txn: &mut WriteTransaction<'env>)[src]

pub fn remove(&self, block: &Block, txn: &mut WriteTransaction<'env>)[src]

Trait Implementations

impl<'env> Debug for TransactionStore<'env>[src]

Auto Trait Implementations

impl<'env> Send for TransactionStore<'env>

impl<'env> Sync for TransactionStore<'env>

impl<'env> Unpin for TransactionStore<'env>

impl<'env> !UnwindSafe for TransactionStore<'env>

impl<'env> !RefUnwindSafe for TransactionStore<'env>

Blanket Implementations

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

impl<T> From<T> for 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]

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self