[][src]Struct nimiq_accounts::accounts::Accounts

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

Methods

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

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

pub fn init(&self, txn: &mut WriteTransaction, network_id: NetworkId)[src]

pub fn get(
    &self,
    address: &Address,
    txn_option: Option<&Transaction>
) -> Account
[src]

pub fn get_chunk(
    &self,
    prefix: &str,
    size: usize,
    txn_option: Option<&Transaction>
) -> Option<AccountsTreeChunk>
[src]

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

pub fn hash_with_block_body(
    &self,
    body: &BlockBody,
    block_height: u32
) -> Result<Blake2bHash, AccountError>
[src]

pub fn commit_block(
    &self,
    txn: &mut WriteTransaction,
    block: &Block
) -> Result<(), AccountError>
[src]

pub fn revert_block(
    &self,
    txn: &mut WriteTransaction,
    block: &Block
) -> Result<(), AccountError>
[src]

pub fn commit_block_body(
    &self,
    txn: &mut WriteTransaction,
    body: &BlockBody,
    block_height: u32
) -> Result<(), AccountError>
[src]

pub fn revert_block_body(
    &self,
    txn: &mut WriteTransaction,
    body: &BlockBody,
    block_height: u32
) -> Result<(), AccountError>
[src]

pub fn get_accounts_proof(
    &self,
    txn: &Transaction,
    addresses: &[Address]
) -> AccountsProof
[src]

pub fn collect_pruned_accounts(
    &self,
    transactions: &Vec<Transaction>,
    block_height: u32
) -> Result<Vec<PrunedAccount>, AccountError>
[src]

Trait Implementations

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

Auto Trait Implementations

impl<'env> Send for Accounts<'env>

impl<'env> Sync for Accounts<'env>

impl<'env> Unpin for Accounts<'env>

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

impl<'env> !RefUnwindSafe for Accounts<'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> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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