pub struct PaymentAccountBody {
pub payment_account: Option<PaymentAccountBodyPaymentAccount>,
}Expand description
PaymentAccountBody
JSON schema
{
"type": "object",
"properties": {
"payment_account": {
"allOf": [
{
"$ref": "#/components/schemas/MemberElements"
},
{
"$ref": "#/components/schemas/PaymentAccount"
}
]
}
}
}Fields§
§payment_account: Option<PaymentAccountBodyPaymentAccount>Trait Implementations§
Source§impl Clone for PaymentAccountBody
impl Clone for PaymentAccountBody
Source§fn clone(&self) -> PaymentAccountBody
fn clone(&self) -> PaymentAccountBody
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 PaymentAccountBody
impl Debug for PaymentAccountBody
Source§impl Default for PaymentAccountBody
impl Default for PaymentAccountBody
Source§impl<'de> Deserialize<'de> for PaymentAccountBody
impl<'de> Deserialize<'de> for PaymentAccountBody
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<&PaymentAccountBody> for PaymentAccountBody
impl From<&PaymentAccountBody> for PaymentAccountBody
Source§fn from(value: &PaymentAccountBody) -> Self
fn from(value: &PaymentAccountBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PaymentAccountBody
impl RefUnwindSafe for PaymentAccountBody
impl Send for PaymentAccountBody
impl Sync for PaymentAccountBody
impl Unpin for PaymentAccountBody
impl UnwindSafe for PaymentAccountBody
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