Trait tob::client::CryptoClient[][src]

pub trait CryptoClient {
    fn client_type(&self) -> ClientType;
#[must_use] fn sync_stats<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = SyncStats> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn wallet_balance<'life0, 'life1, 'async_trait>(
        &'life0 self,
        identifier: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<WalletBalance>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn client_type(&self) -> ClientType[src]

#[must_use]fn sync_stats<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = SyncStats> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]fn wallet_balance<'life0, 'life1, 'async_trait>(
    &'life0 self,
    identifier: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<WalletBalance>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Loading content...

Implementors

impl CryptoClient for BitcoinRpcClient[src]

impl CryptoClient for EthereumRpcClient[src]

impl CryptoClient for EthereumClassicRpcClient[src]

impl CryptoClient for HandshakeRpcClient[src]

impl CryptoClient for NimiqRpcClient[src]

impl CryptoClient for RavencoinRpcClient[src]

impl CryptoClient for SiacoinClient[src]

Loading content...