pub struct FundingInstructionsBankTransferIbanRecord {
pub account_holder_address: Address,
pub account_holder_name: String,
pub bank_address: Address,
pub bic: String,
pub country: String,
pub iban: String,
}
Expand description
Iban Records contain E.U. bank account details per the SEPA format.
Fields§
§account_holder_address: Address
§account_holder_name: String
The name of the person or business that owns the bank account
bank_address: Address
§bic: String
The BIC/SWIFT code of the account.
country: String
Two-letter country code (ISO 3166-1 alpha-2).
iban: String
The IBAN of the account.
Trait Implementations§
Source§impl Clone for FundingInstructionsBankTransferIbanRecord
impl Clone for FundingInstructionsBankTransferIbanRecord
Source§fn clone(&self) -> FundingInstructionsBankTransferIbanRecord
fn clone(&self) -> FundingInstructionsBankTransferIbanRecord
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 FromValueOpt for FundingInstructionsBankTransferIbanRecord
impl FromValueOpt for FundingInstructionsBankTransferIbanRecord
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for FundingInstructionsBankTransferIbanRecord
impl RefUnwindSafe for FundingInstructionsBankTransferIbanRecord
impl Send for FundingInstructionsBankTransferIbanRecord
impl Sync for FundingInstructionsBankTransferIbanRecord
impl Unpin for FundingInstructionsBankTransferIbanRecord
impl UnwindSafe for FundingInstructionsBankTransferIbanRecord
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