pub struct TransferIntentResponseRequestDetails {
pub body: TransferRequestBody,
pub method: TransferIntentResponseRequestDetailsMethod,
pub url: String,
}Expand description
The original transfer request that would be sent to the wallet transfer endpoint
JSON schema
{
"description": "The original transfer request that would be sent to the
wallet transfer endpoint",
"type": "object",
"required": [
"body",
"method",
"url"
],
"properties": {
"body": {
"$ref": "#/components/schemas/TransferRequestBody"
},
"method": {
"type": "string",
"enum": [
"POST"
]
},
"url": {
"type": "string"
}
}
}Fields§
§body: TransferRequestBody§method: TransferIntentResponseRequestDetailsMethod§url: StringTrait Implementations§
Source§impl Clone for TransferIntentResponseRequestDetails
impl Clone for TransferIntentResponseRequestDetails
Source§fn clone(&self) -> TransferIntentResponseRequestDetails
fn clone(&self) -> TransferIntentResponseRequestDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for TransferIntentResponseRequestDetails
impl<'de> Deserialize<'de> for TransferIntentResponseRequestDetails
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<&TransferIntentResponseRequestDetails> for TransferIntentResponseRequestDetails
impl From<&TransferIntentResponseRequestDetails> for TransferIntentResponseRequestDetails
Source§fn from(value: &TransferIntentResponseRequestDetails) -> Self
fn from(value: &TransferIntentResponseRequestDetails) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransferIntentResponseRequestDetails
impl RefUnwindSafe for TransferIntentResponseRequestDetails
impl Send for TransferIntentResponseRequestDetails
impl Sync for TransferIntentResponseRequestDetails
impl Unpin for TransferIntentResponseRequestDetails
impl UnsafeUnpin for TransferIntentResponseRequestDetails
impl UnwindSafe for TransferIntentResponseRequestDetails
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