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<CreateUserFiatAccountBodyIban, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateUserFiatAccountBodyIban, <__D as Deserializer<'de>>::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) -> CreateUserFiatAccountBodyIban
fn from(value: &CreateUserFiatAccountBodyIban) -> CreateUserFiatAccountBodyIban
Converts to this type from the input type.
Source§impl Serialize for CreateUserFiatAccountBodyIban
impl Serialize for CreateUserFiatAccountBodyIban
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 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