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