pub struct GetUserFiatAccountsResponseAccountsItem {
pub account_type: String,
pub bank_name: Option<String>,
pub currency: String,
pub id: String,
pub last_4: Option<String>,
}Expand description
GetUserFiatAccountsResponseAccountsItem
JSON schema
{
"type": "object",
"required": [
"account_type",
"currency",
"id"
],
"properties": {
"account_type": {
"type": "string"
},
"bank_name": {
"type": "string"
},
"currency": {
"type": "string"
},
"id": {
"type": "string"
},
"last_4": {
"type": "string"
}
}
}Fields§
§account_type: String§bank_name: Option<String>§currency: String§id: String§last_4: Option<String>Trait Implementations§
Source§impl Clone for GetUserFiatAccountsResponseAccountsItem
impl Clone for GetUserFiatAccountsResponseAccountsItem
Source§fn clone(&self) -> GetUserFiatAccountsResponseAccountsItem
fn clone(&self) -> GetUserFiatAccountsResponseAccountsItem
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 GetUserFiatAccountsResponseAccountsItem
impl<'de> Deserialize<'de> for GetUserFiatAccountsResponseAccountsItem
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<&GetUserFiatAccountsResponseAccountsItem> for GetUserFiatAccountsResponseAccountsItem
impl From<&GetUserFiatAccountsResponseAccountsItem> for GetUserFiatAccountsResponseAccountsItem
Source§fn from(value: &GetUserFiatAccountsResponseAccountsItem) -> Self
fn from(value: &GetUserFiatAccountsResponseAccountsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetUserFiatAccountsResponseAccountsItem
impl RefUnwindSafe for GetUserFiatAccountsResponseAccountsItem
impl Send for GetUserFiatAccountsResponseAccountsItem
impl Sync for GetUserFiatAccountsResponseAccountsItem
impl Unpin for GetUserFiatAccountsResponseAccountsItem
impl UnsafeUnpin for GetUserFiatAccountsResponseAccountsItem
impl UnwindSafe for GetUserFiatAccountsResponseAccountsItem
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