pub struct CreditTransfer {
pub account_id: Identifier,
pub account_name: Option<String>,
pub provider: Option<String>,
}Expand description
BG-17 credit transfer. BT-84 account id (IBAN), BT-85 name, BT-86 provider (BIC).
Fields§
§account_id: IdentifierBT-84 payment account identifier (IBAN).
account_name: Option<String>BT-85 payment account name.
provider: Option<String>BT-86 payment service provider identifier (BIC).
Trait Implementations§
Source§impl Clone for CreditTransfer
impl Clone for CreditTransfer
Source§fn clone(&self) -> CreditTransfer
fn clone(&self) -> CreditTransfer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreditTransfer
impl Debug for CreditTransfer
impl Eq for CreditTransfer
Source§impl PartialEq for CreditTransfer
impl PartialEq for CreditTransfer
impl StructuralPartialEq for CreditTransfer
Auto Trait Implementations§
impl Freeze for CreditTransfer
impl RefUnwindSafe for CreditTransfer
impl Send for CreditTransfer
impl Sync for CreditTransfer
impl Unpin for CreditTransfer
impl UnsafeUnpin for CreditTransfer
impl UnwindSafe for CreditTransfer
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