[][src]Trait sunshine_faucet_client::FaucetClient

pub trait FaucetClient<T: Runtime + Faucet>: ChainClient<T> {
#[must_use]    fn mint<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Option<MintedEvent<T>>, Self::Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn mint<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Option<MintedEvent<T>>, Self::Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl<T, C> FaucetClient<T> for C where
    T: Runtime + Faucet,
    <<T::Extra as SignedExtra<T>>::Extra as SignedExtension>::AdditionalSigned: Send + Sync,
    C: ChainClient<T>, 
[src]

Loading content...