Send

Trait Send 

Source
pub trait Send {
    // Required method
    fn send<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'life7, 'async_trait>(
        &'life0 self,
        amount: &'life1 str,
        currency: &'life2 str,
        address: &'life3 str,
        description: Option<&'life4 str>,
        message: Option<&'life5 str>,
        external_id: Option<&'life6 str>,
        dest_tag_flag: bool,
        dest_tag: Option<&'life7 str>,
    ) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait,
             'life5: 'async_trait,
             'life6: 'async_trait,
             'life7: 'async_trait;
}

Required Methods§

Source

fn send<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'life7, 'async_trait>( &'life0 self, amount: &'life1 str, currency: &'life2 str, address: &'life3 str, description: Option<&'life4 str>, message: Option<&'life5 str>, external_id: Option<&'life6 str>, dest_tag_flag: bool, dest_tag: Option<&'life7 str>, ) -> Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait, 'life6: 'async_trait, 'life7: 'async_trait,

Implementors§