enum SendImplResponse {
Full(Box<RpcTransactionResponse>),
Pending(TxExecutionStatus),
}Expand description
Internal enum to distinguish between a full RPC response and a minimal pending response.
Variants§
Full(Box<RpcTransactionResponse>)
Pending(TxExecutionStatus)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SendImplResponse
impl RefUnwindSafe for SendImplResponse
impl Send for SendImplResponse
impl Sync for SendImplResponse
impl Unpin for SendImplResponse
impl UnsafeUnpin for SendImplResponse
impl UnwindSafe for SendImplResponse
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