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§
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.