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