[][src]Trait luno_sdk::Receive

pub trait Receive {
#[must_use]    fn get_receive_address<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        asset: &'life1 str,
        address: Option<&'life2 str>
    ) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn create_receive_address<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        asset: &'life1 str,
        name: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn get_receive_address<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self,
    asset: &'life1 str,
    address: Option<&'life2 str>
) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn create_receive_address<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self,
    asset: &'life1 str,
    name: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl Receive for LunoClient[src]

Loading content...