pub struct CreateUserFiatAccountBodyAccount {
pub account_number: CreateUserFiatAccountBodyAccountAccountNumber,
pub checking_or_savings: Option<CreateUserFiatAccountBodyAccountCheckingOrSavings>,
pub routing_number: CreateUserFiatAccountBodyAccountRoutingNumber,
}Expand description
CreateUserFiatAccountBodyAccount
JSON schema
{
"type": "object",
"required": [
"account_number",
"routing_number"
],
"properties": {
"account_number": {
"type": "string",
"minLength": 1
},
"checking_or_savings": {
"type": "string",
"enum": [
"checking",
"savings"
]
},
"routing_number": {
"type": "string",
"maxLength": 9,
"minLength": 9
}
}
}Fields§
§account_number: CreateUserFiatAccountBodyAccountAccountNumber§checking_or_savings: Option<CreateUserFiatAccountBodyAccountCheckingOrSavings>§routing_number: CreateUserFiatAccountBodyAccountRoutingNumberTrait Implementations§
Source§impl Clone for CreateUserFiatAccountBodyAccount
impl Clone for CreateUserFiatAccountBodyAccount
Source§fn clone(&self) -> CreateUserFiatAccountBodyAccount
fn clone(&self) -> CreateUserFiatAccountBodyAccount
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 CreateUserFiatAccountBodyAccount
impl<'de> Deserialize<'de> for CreateUserFiatAccountBodyAccount
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<&CreateUserFiatAccountBodyAccount> for CreateUserFiatAccountBodyAccount
impl From<&CreateUserFiatAccountBodyAccount> for CreateUserFiatAccountBodyAccount
Source§fn from(value: &CreateUserFiatAccountBodyAccount) -> Self
fn from(value: &CreateUserFiatAccountBodyAccount) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateUserFiatAccountBodyAccount
impl RefUnwindSafe for CreateUserFiatAccountBodyAccount
impl Send for CreateUserFiatAccountBodyAccount
impl Sync for CreateUserFiatAccountBodyAccount
impl Unpin for CreateUserFiatAccountBodyAccount
impl UnwindSafe for CreateUserFiatAccountBodyAccount
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