struct MinimalTransactionResponse {
result: MinimalTransactionResult,
}Expand description
Minimal JSON-RPC response returned when wait_until is NONE or INCLUDED.
The RPC returns only {"jsonrpc":"2.0","result":{"final_execution_status":"..."},"id":"0"}
which doesn’t match the full RpcTransactionResponse schema.
Fields§
§result: MinimalTransactionResultTrait Implementations§
Source§impl<'de> Deserialize<'de> for MinimalTransactionResponse
impl<'de> Deserialize<'de> for MinimalTransactionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MinimalTransactionResponse
impl RefUnwindSafe for MinimalTransactionResponse
impl Send for MinimalTransactionResponse
impl Sync for MinimalTransactionResponse
impl Unpin for MinimalTransactionResponse
impl UnsafeUnpin for MinimalTransactionResponse
impl UnwindSafe for MinimalTransactionResponse
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