pub struct CreateUserFiatAccountBodyIban {
pub account_number: CreateUserFiatAccountBodyIbanAccountNumber,
pub bic: CreateUserFiatAccountBodyIbanBic,
pub country: CreateUserFiatAccountBodyIbanCountry,
}Expand description
CreateUserFiatAccountBodyIban
JSON schema
{
"type": "object",
"required": [
"account_number",
"bic",
"country"
],
"properties": {
"account_number": {
"type": "string",
"minLength": 1
},
"bic": {
"type": "string",
"minLength": 1
},
"country": {
"type": "string",
"maxLength": 3,
"minLength": 3
}
}
}Fields§
§account_number: CreateUserFiatAccountBodyIbanAccountNumber§bic: CreateUserFiatAccountBodyIbanBic§country: CreateUserFiatAccountBodyIbanCountryTrait Implementations§
Source§impl Clone for CreateUserFiatAccountBodyIban
impl Clone for CreateUserFiatAccountBodyIban
Source§fn clone(&self) -> CreateUserFiatAccountBodyIban
fn clone(&self) -> CreateUserFiatAccountBodyIban
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 CreateUserFiatAccountBodyIban
impl<'de> Deserialize<'de> for CreateUserFiatAccountBodyIban
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<&CreateUserFiatAccountBodyIban> for CreateUserFiatAccountBodyIban
impl From<&CreateUserFiatAccountBodyIban> for CreateUserFiatAccountBodyIban
Source§fn from(value: &CreateUserFiatAccountBodyIban) -> Self
fn from(value: &CreateUserFiatAccountBodyIban) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateUserFiatAccountBodyIban
impl RefUnwindSafe for CreateUserFiatAccountBodyIban
impl Send for CreateUserFiatAccountBodyIban
impl Sync for CreateUserFiatAccountBodyIban
impl Unpin for CreateUserFiatAccountBodyIban
impl UnwindSafe for CreateUserFiatAccountBodyIban
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