pub struct IbanAddress {
pub account_holder: AccountHolderDetails,
pub iban: String,
}Fields§
§account_holder: AccountHolderDetails§iban: StringImplementations§
Source§impl IbanAddress
impl IbanAddress
pub fn new(account_holder: AccountHolderDetails, iban: String) -> IbanAddress
Trait Implementations§
Source§impl Clone for IbanAddress
impl Clone for IbanAddress
Source§fn clone(&self) -> IbanAddress
fn clone(&self) -> IbanAddress
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 IbanAddress
impl Debug for IbanAddress
Source§impl Default for IbanAddress
impl Default for IbanAddress
Source§fn default() -> IbanAddress
fn default() -> IbanAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IbanAddress
impl<'de> Deserialize<'de> for IbanAddress
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 PartialEq for IbanAddress
impl PartialEq for IbanAddress
Source§impl Serialize for IbanAddress
impl Serialize for IbanAddress
impl StructuralPartialEq for IbanAddress
Auto Trait Implementations§
impl Freeze for IbanAddress
impl RefUnwindSafe for IbanAddress
impl Send for IbanAddress
impl Sync for IbanAddress
impl Unpin for IbanAddress
impl UnwindSafe for IbanAddress
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