pub struct TransactionSend { /* private fields */ }Expand description
Future for sending a transaction.
Implementations§
Source§impl TransactionSend
impl TransactionSend
Sourcepub fn wait_until(self, status: TxExecutionStatus) -> Self
pub fn wait_until(self, status: TxExecutionStatus) -> Self
Set the execution wait level.
Trait Implementations§
Source§impl IntoFuture for TransactionSend
impl IntoFuture for TransactionSend
Source§type Output = Result<FinalExecutionOutcome, Error>
type Output = Result<FinalExecutionOutcome, Error>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <TransactionSend as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <TransactionSend as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl Freeze for TransactionSend
impl !RefUnwindSafe for TransactionSend
impl Send for TransactionSend
impl Sync for TransactionSend
impl Unpin for TransactionSend
impl UnsafeUnpin for TransactionSend
impl !UnwindSafe for TransactionSend
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more