pub struct SourceTransactionSepaCreditTransferData {
pub reference: Option<String>,
pub sender_iban: Option<String>,
pub sender_name: Option<String>,
}Fields§
§reference: Option<String>Reference associated with the transfer.
sender_iban: Option<String>Sender’s bank account IBAN.
sender_name: Option<String>Sender’s name.
Trait Implementations§
Source§impl Clone for SourceTransactionSepaCreditTransferData
impl Clone for SourceTransactionSepaCreditTransferData
Source§fn clone(&self) -> SourceTransactionSepaCreditTransferData
fn clone(&self) -> SourceTransactionSepaCreditTransferData
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 SourceTransactionSepaCreditTransferData
impl FromValueOpt for SourceTransactionSepaCreditTransferData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SourceTransactionSepaCreditTransferData
impl PartialEq for SourceTransactionSepaCreditTransferData
Source§fn eq(&self, other: &SourceTransactionSepaCreditTransferData) -> bool
fn eq(&self, other: &SourceTransactionSepaCreditTransferData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SourceTransactionSepaCreditTransferData
impl StructuralPartialEq for SourceTransactionSepaCreditTransferData
Auto Trait Implementations§
impl Freeze for SourceTransactionSepaCreditTransferData
impl RefUnwindSafe for SourceTransactionSepaCreditTransferData
impl Send for SourceTransactionSepaCreditTransferData
impl Sync for SourceTransactionSepaCreditTransferData
impl Unpin for SourceTransactionSepaCreditTransferData
impl UnsafeUnpin for SourceTransactionSepaCreditTransferData
impl UnwindSafe for SourceTransactionSepaCreditTransferData
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