pub enum IssuingAuthorizationAuthorizationMethod {
Chip,
Contactless,
KeyedIn,
Online,
Swipe,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IssuingAuthorizationAuthorizationMethod
impl Clone for IssuingAuthorizationAuthorizationMethod
Source§fn clone(&self) -> IssuingAuthorizationAuthorizationMethod
fn clone(&self) -> IssuingAuthorizationAuthorizationMethod
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 IssuingAuthorizationAuthorizationMethod
impl FromStr for IssuingAuthorizationAuthorizationMethod
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<IssuingAuthorizationAuthorizationMethod, <IssuingAuthorizationAuthorizationMethod as FromStr>::Err>
fn from_str( s: &str, ) -> Result<IssuingAuthorizationAuthorizationMethod, <IssuingAuthorizationAuthorizationMethod as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for IssuingAuthorizationAuthorizationMethod
impl PartialEq for IssuingAuthorizationAuthorizationMethod
Source§fn eq(&self, other: &IssuingAuthorizationAuthorizationMethod) -> bool
fn eq(&self, other: &IssuingAuthorizationAuthorizationMethod) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for IssuingAuthorizationAuthorizationMethod
impl Serialize for IssuingAuthorizationAuthorizationMethod
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for IssuingAuthorizationAuthorizationMethod
impl Eq for IssuingAuthorizationAuthorizationMethod
impl StructuralPartialEq for IssuingAuthorizationAuthorizationMethod
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationAuthorizationMethod
impl RefUnwindSafe for IssuingAuthorizationAuthorizationMethod
impl Send for IssuingAuthorizationAuthorizationMethod
impl Sync for IssuingAuthorizationAuthorizationMethod
impl Unpin for IssuingAuthorizationAuthorizationMethod
impl UnwindSafe for IssuingAuthorizationAuthorizationMethod
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