pub struct SepaAccount {
pub iban: Iban,
pub bic: Bic,
pub account_number: String,
pub sub_account: String,
pub blz: Blz,
pub owner: Option<String>,
pub product_name: Option<String>,
pub currency: Option<Currency>,
}Expand description
SEPA account info as returned by HISPA / HIUPD.
Fields§
§iban: Iban§bic: Bic§account_number: String§sub_account: String§blz: Blz§owner: Option<String>§product_name: Option<String>§currency: Option<Currency>Trait Implementations§
Source§impl Clone for SepaAccount
impl Clone for SepaAccount
Source§fn clone(&self) -> SepaAccount
fn clone(&self) -> SepaAccount
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 Debug for SepaAccount
impl Debug for SepaAccount
Source§impl<'de> Deserialize<'de> for SepaAccount
impl<'de> Deserialize<'de> for SepaAccount
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
Auto Trait Implementations§
impl Freeze for SepaAccount
impl RefUnwindSafe for SepaAccount
impl Send for SepaAccount
impl Sync for SepaAccount
impl Unpin for SepaAccount
impl UnsafeUnpin for SepaAccount
impl UnwindSafe for SepaAccount
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