pub struct TransactionResponseBody {
pub transaction: Option<TransactionResponse>,
}Expand description
TransactionResponseBody
JSON schema
{
"type": "object",
"properties": {
"transaction": {
"$ref": "#/components/schemas/TransactionResponse"
}
}
}Fields§
§transaction: Option<TransactionResponse>Trait Implementations§
Source§impl Clone for TransactionResponseBody
impl Clone for TransactionResponseBody
Source§fn clone(&self) -> TransactionResponseBody
fn clone(&self) -> TransactionResponseBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransactionResponseBody
impl Debug for TransactionResponseBody
Source§impl Default for TransactionResponseBody
impl Default for TransactionResponseBody
Source§impl<'de> Deserialize<'de> for TransactionResponseBody
impl<'de> Deserialize<'de> for TransactionResponseBody
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
Source§impl From<&TransactionResponseBody> for TransactionResponseBody
impl From<&TransactionResponseBody> for TransactionResponseBody
Source§fn from(value: &TransactionResponseBody) -> Self
fn from(value: &TransactionResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionResponseBody
impl RefUnwindSafe for TransactionResponseBody
impl Send for TransactionResponseBody
impl Sync for TransactionResponseBody
impl Unpin for TransactionResponseBody
impl UnwindSafe for TransactionResponseBody
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