pub struct IssuingNetworkTokenMastercard {
pub card_reference_id: Option<String>,
pub token_reference_id: String,
pub token_requestor_id: String,
pub token_requestor_name: Option<String>,
}Fields§
§card_reference_id: Option<String>A unique reference ID from MasterCard to represent the card account number.
token_reference_id: StringThe network-unique identifier for the token.
token_requestor_id: StringThe ID of the entity requesting tokenization, specific to MasterCard.
token_requestor_name: Option<String>The name of the entity requesting tokenization, if known. This is directly provided from MasterCard.
Trait Implementations§
Source§impl Clone for IssuingNetworkTokenMastercard
impl Clone for IssuingNetworkTokenMastercard
Source§fn clone(&self) -> IssuingNetworkTokenMastercard
fn clone(&self) -> IssuingNetworkTokenMastercard
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 FromValueOpt for IssuingNetworkTokenMastercard
impl FromValueOpt for IssuingNetworkTokenMastercard
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingNetworkTokenMastercard
impl PartialEq for IssuingNetworkTokenMastercard
Source§fn eq(&self, other: &IssuingNetworkTokenMastercard) -> bool
fn eq(&self, other: &IssuingNetworkTokenMastercard) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingNetworkTokenMastercard
impl StructuralPartialEq for IssuingNetworkTokenMastercard
Auto Trait Implementations§
impl Freeze for IssuingNetworkTokenMastercard
impl RefUnwindSafe for IssuingNetworkTokenMastercard
impl Send for IssuingNetworkTokenMastercard
impl Sync for IssuingNetworkTokenMastercard
impl Unpin for IssuingNetworkTokenMastercard
impl UnsafeUnpin for IssuingNetworkTokenMastercard
impl UnwindSafe for IssuingNetworkTokenMastercard
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