pub trait TransactionInternal: Sized {
type Output;
// Required method
fn execute_with_opt_gas_internal<'life0, 'async_trait, S>(
self,
gas_budget: Option<u64>,
client: &'life0 IdentityClient<S>,
) -> Pin<Box<dyn Future<Output = Result<TransactionOutputInternal<Self::Output>, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
S: 'async_trait + Signer<IotaKeySignature> + OptionalSync,
Self: 'async_trait;
}
Expand description
Interface for operations that interact with the ledger through transactions.
Required Associated Types§
Required Methods§
Sourcefn execute_with_opt_gas_internal<'life0, 'async_trait, S>(
self,
gas_budget: Option<u64>,
client: &'life0 IdentityClient<S>,
) -> Pin<Box<dyn Future<Output = Result<TransactionOutputInternal<Self::Output>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
S: 'async_trait + Signer<IotaKeySignature> + OptionalSync,
Self: 'async_trait,
fn execute_with_opt_gas_internal<'life0, 'async_trait, S>(
self,
gas_budget: Option<u64>,
client: &'life0 IdentityClient<S>,
) -> Pin<Box<dyn Future<Output = Result<TransactionOutputInternal<Self::Output>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
S: 'async_trait + Signer<IotaKeySignature> + OptionalSync,
Self: 'async_trait,
Executes this operation using the given client
and an optional gas_budget
.
If no value for gas_budget
is provided, an estimated value will be used.
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.