Skip to main content

CallHandlerExt

Trait CallHandlerExt 

Source
pub trait CallHandlerExt<T> {
    // Required method
    fn almost_sync_call(
        self,
        builder_date: &BuilderData,
        utxo_manager: &SharedUtxoManager,
        tx_config: &Option<TransactionConfig>,
    ) -> impl Future<Output = FuelsResult<SendResult<FuelsResult<CallResponse<T>>>>>;
}

Required Methods§

Source

fn almost_sync_call( self, builder_date: &BuilderData, utxo_manager: &SharedUtxoManager, tx_config: &Option<TransactionConfig>, ) -> impl Future<Output = FuelsResult<SendResult<FuelsResult<CallResponse<T>>>>>

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.

Implementations on Foreign Types§

Source§

impl<C, T> CallHandlerExt<T> for CallHandler<Wallet, C, T>

Source§

async fn almost_sync_call( self, builder_date: &BuilderData, utxo_manager: &SharedUtxoManager, tx_config: &Option<TransactionConfig>, ) -> FuelsResult<SendResult<FuelsResult<CallResponse<T>>>>

Implementors§