pub struct CreatePaymentTransferQuoteResponse {
pub transfer: Transfer,
}
Expand description
CreatePaymentTransferQuoteResponse
JSON schema
{
"type": "object",
"required": [
"transfer"
],
"properties": {
"transfer": {
"$ref": "#/components/schemas/Transfer"
}
}
}
Fields§
§transfer: Transfer
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentTransferQuoteResponse
impl Clone for CreatePaymentTransferQuoteResponse
Source§fn clone(&self) -> CreatePaymentTransferQuoteResponse
fn clone(&self) -> CreatePaymentTransferQuoteResponse
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<'de> Deserialize<'de> for CreatePaymentTransferQuoteResponse
impl<'de> Deserialize<'de> for CreatePaymentTransferQuoteResponse
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<&CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
impl From<&CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
Source§fn from(value: &CreatePaymentTransferQuoteResponse) -> Self
fn from(value: &CreatePaymentTransferQuoteResponse) -> Self
Converts to this type from the input type.
Source§impl From<CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
impl From<CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
Source§fn from(value: CreatePaymentTransferQuoteResponse) -> Self
fn from(value: CreatePaymentTransferQuoteResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
impl TryFrom<CreatePaymentTransferQuoteResponse> for CreatePaymentTransferQuoteResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: CreatePaymentTransferQuoteResponse,
) -> Result<Self, ConversionError>
fn try_from( value: CreatePaymentTransferQuoteResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CreatePaymentTransferQuoteResponse
impl RefUnwindSafe for CreatePaymentTransferQuoteResponse
impl Send for CreatePaymentTransferQuoteResponse
impl Sync for CreatePaymentTransferQuoteResponse
impl Unpin for CreatePaymentTransferQuoteResponse
impl UnwindSafe for CreatePaymentTransferQuoteResponse
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