pub struct TxReceipt {
pub result: TxResult,
}Expand description
Transaction receipt
JSON schema
{
"description": "Transaction receipt",
"type": "object",
"required": [
"result"
],
"properties": {
"result": {
"$ref": "#/components/schemas/TxResult"
}
}
}Fields§
§result: TxResultTrait Implementations§
Source§impl<'de> Deserialize<'de> for TxReceipt
impl<'de> Deserialize<'de> for TxReceipt
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 TxReceipt
impl RefUnwindSafe for TxReceipt
impl Send for TxReceipt
impl Sync for TxReceipt
impl Unpin for TxReceipt
impl UnsafeUnpin for TxReceipt
impl UnwindSafe for TxReceipt
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