AsyncResendTransactionWithSimpleStatus

Trait AsyncResendTransactionWithSimpleStatus 

Source
pub trait AsyncResendTransactionWithSimpleStatus: AsyncSendTransaction {
    // Required method
    fn resend_transaction_with_simple_status<'life0, 'async_trait, TransactionBuilder>(
        &'life0 self,
        transaction_builder: TransactionBuilder,
        send_ctx: SendContext,
        resend_count: usize,
    ) -> Pin<Box<dyn Future<Output = Result<(Signature, Option<TransactionError>), ClientError>> + Send + 'async_trait>>
       where TransactionBuilder: Send + Sync + Fn(Hash) -> Transaction + 'async_trait,
             Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn resend_transaction_with_simple_status<'life0, 'async_trait, TransactionBuilder>( &'life0 self, transaction_builder: TransactionBuilder, send_ctx: SendContext, resend_count: usize, ) -> Pin<Box<dyn Future<Output = Result<(Signature, Option<TransactionError>), ClientError>> + Send + 'async_trait>>
where TransactionBuilder: Send + Sync + Fn(Hash) -> Transaction + 'async_trait, Self: 'async_trait, 'life0: 'async_trait,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§