pub enum IssuingNetworkTokenDeviceType {
Other,
Phone,
Watch,
}
Expand description
The type of device used for tokenization.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IssuingNetworkTokenDeviceType
impl Clone for IssuingNetworkTokenDeviceType
Source§fn clone(&self) -> IssuingNetworkTokenDeviceType
fn clone(&self) -> IssuingNetworkTokenDeviceType
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 IssuingNetworkTokenDeviceType
impl FromStr for IssuingNetworkTokenDeviceType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<IssuingNetworkTokenDeviceType, <IssuingNetworkTokenDeviceType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<IssuingNetworkTokenDeviceType, <IssuingNetworkTokenDeviceType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for IssuingNetworkTokenDeviceType
impl PartialEq for IssuingNetworkTokenDeviceType
Source§fn eq(&self, other: &IssuingNetworkTokenDeviceType) -> bool
fn eq(&self, other: &IssuingNetworkTokenDeviceType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for IssuingNetworkTokenDeviceType
impl Eq for IssuingNetworkTokenDeviceType
impl StructuralPartialEq for IssuingNetworkTokenDeviceType
Auto Trait Implementations§
impl Freeze for IssuingNetworkTokenDeviceType
impl RefUnwindSafe for IssuingNetworkTokenDeviceType
impl Send for IssuingNetworkTokenDeviceType
impl Sync for IssuingNetworkTokenDeviceType
impl Unpin for IssuingNetworkTokenDeviceType
impl UnwindSafe for IssuingNetworkTokenDeviceType
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