pub struct PaymentMethodLink {
pub email: Option<String>,
pub persistent_token: Option<String>,
}
Fields§
§email: Option<String>
Account owner’s email address.
persistent_token: Option<String>
[Deprecated] This is a legacy parameter that no longer has any function.
Trait Implementations§
Source§impl Clone for PaymentMethodLink
impl Clone for PaymentMethodLink
Source§fn clone(&self) -> PaymentMethodLink
fn clone(&self) -> PaymentMethodLink
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 PaymentMethodLink
impl Debug for PaymentMethodLink
Source§impl Deserialize for PaymentMethodLink
impl Deserialize for PaymentMethodLink
Source§impl FromValueOpt for PaymentMethodLink
impl FromValueOpt for PaymentMethodLink
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodLink
impl RefUnwindSafe for PaymentMethodLink
impl Send for PaymentMethodLink
impl Sync for PaymentMethodLink
impl Unpin for PaymentMethodLink
impl UnwindSafe for PaymentMethodLink
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