pub struct PaymentMethodDetailsSwish {
pub fingerprint: Option<String>,
pub payment_reference: Option<String>,
pub verified_phone_last4: Option<String>,
}
Fields§
§fingerprint: Option<String>
Uniquely identifies the payer’s Swish account. You can use this attribute to check whether two Swish transactions were paid for by the same payer.
payment_reference: Option<String>
Payer bank reference number for the payment
verified_phone_last4: Option<String>
The last four digits of the Swish account phone number
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsSwish
impl Clone for PaymentMethodDetailsSwish
Source§fn clone(&self) -> PaymentMethodDetailsSwish
fn clone(&self) -> PaymentMethodDetailsSwish
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 PaymentMethodDetailsSwish
impl Debug for PaymentMethodDetailsSwish
Source§impl FromValueOpt for PaymentMethodDetailsSwish
impl FromValueOpt for PaymentMethodDetailsSwish
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsSwish
impl RefUnwindSafe for PaymentMethodDetailsSwish
impl Send for PaymentMethodDetailsSwish
impl Sync for PaymentMethodDetailsSwish
impl Unpin for PaymentMethodDetailsSwish
impl UnwindSafe for PaymentMethodDetailsSwish
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