identity_iota::iota::rebased::transaction

Trait TransactionInternal

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

Source

type Output

The result of performing the operation.

Required Methods§

Source

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.

Implementations on Foreign Types§

Source§

impl TransactionInternal for Vec<u8>

Source§

type Output = ()

Source§

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<<Vec<u8> as TransactionInternal>::Output>, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, S: 'async_trait + Signer<IotaKeySignature> + OptionalSync, Vec<u8>: 'async_trait,

Source§

impl TransactionInternal for ProgrammableTransaction

Source§

type Output = ()

Source§

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<<ProgrammableTransaction as TransactionInternal>::Output>, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, S: Signer<IotaKeySignature> + OptionalSync + 'async_trait, ProgrammableTransaction: 'async_trait,

Implementors§

Source§

impl TransactionInternal for CreateIdentityTx

Source§

impl TransactionInternal for AcceptTransferTx

Source§

impl TransactionInternal for ConcludeTransferTx

Source§

impl<A> TransactionInternal for ApproveProposalTx<'_, '_, A>
where Proposal<A>: ProposalT<Action = A>, A: MoveType + Send,

Source§

impl<A> TransactionInternal for CreateProposalTx<'_, A>
where Proposal<A>: ProposalT<Action = A> + DeserializeOwned, A: Send,

Source§

impl<A> TransactionInternal for ExecuteProposalTx<'_, A>
where Proposal<A>: ProposalT<Action = A>, A: OptionalSend,

Source§

impl<F> TransactionInternal for UserDrivenTx<'_, BorrowActionWithIntent<F>>
where F: BorrowIntentFnT + Send,

Source§

impl<F> TransactionInternal for UserDrivenTx<'_, ControllerExecutionWithIntent<F>>

Source§

impl<T> TransactionInternal for CreateAssetTx<T>

Source§

impl<T> TransactionInternal for DeleteAssetTx<T>
where T: MoveType + Send + Sync,

Source§

impl<T> TransactionInternal for TransferAssetTx<T>
where T: MoveType + Send + Sync,

Source§

impl<T> TransactionInternal for UpdateContentTx<'_, T>
where T: MoveType + Serialize + Clone + Send + Sync,