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<CreateUserFiatAccountBodyAccount, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateUserFiatAccountBodyAccount, <__D as Deserializer<'de>>::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,
) -> CreateUserFiatAccountBodyAccount
fn from( value: &CreateUserFiatAccountBodyAccount, ) -> CreateUserFiatAccountBodyAccount
Converts to this type from the input type.
Source§impl Serialize for CreateUserFiatAccountBodyAccount
impl Serialize for CreateUserFiatAccountBodyAccount
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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