pub enum IssuingNetworkTokenNetworkDataType {
Mastercard,
Visa,
}
Expand description
The network that the token is associated with. An additional hash is included with a name matching this value, containing tokenization data specific to the card network.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IssuingNetworkTokenNetworkDataType
impl Clone for IssuingNetworkTokenNetworkDataType
Source§fn clone(&self) -> IssuingNetworkTokenNetworkDataType
fn clone(&self) -> IssuingNetworkTokenNetworkDataType
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 FromStr for IssuingNetworkTokenNetworkDataType
impl FromStr for IssuingNetworkTokenNetworkDataType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<IssuingNetworkTokenNetworkDataType, <IssuingNetworkTokenNetworkDataType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<IssuingNetworkTokenNetworkDataType, <IssuingNetworkTokenNetworkDataType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for IssuingNetworkTokenNetworkDataType
impl PartialEq for IssuingNetworkTokenNetworkDataType
Source§fn eq(&self, other: &IssuingNetworkTokenNetworkDataType) -> bool
fn eq(&self, other: &IssuingNetworkTokenNetworkDataType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for IssuingNetworkTokenNetworkDataType
impl Eq for IssuingNetworkTokenNetworkDataType
impl StructuralPartialEq for IssuingNetworkTokenNetworkDataType
Auto Trait Implementations§
impl Freeze for IssuingNetworkTokenNetworkDataType
impl RefUnwindSafe for IssuingNetworkTokenNetworkDataType
impl Send for IssuingNetworkTokenNetworkDataType
impl Sync for IssuingNetworkTokenNetworkDataType
impl Unpin for IssuingNetworkTokenNetworkDataType
impl UnwindSafe for IssuingNetworkTokenNetworkDataType
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