pub enum TransactionEntryMode {
Icc,
Mag,
Manual,
ClessMag,
ClessIcc,
Unknown,
}Expand description
How the card was read (response “Transaction type”: ICC/MAG/MAN/CLM/CLI).
Variants§
Icc
Chip (ICC).
Mag
Magnetic stripe.
Manual
Manual PAN entry.
ClessMag
Contactless magstripe.
ClessIcc
Contactless chip.
Unknown
Unknown / not reported.
Trait Implementations§
Source§impl Clone for TransactionEntryMode
impl Clone for TransactionEntryMode
Source§fn clone(&self) -> TransactionEntryMode
fn clone(&self) -> TransactionEntryMode
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 moreimpl Copy for TransactionEntryMode
Source§impl Debug for TransactionEntryMode
impl Debug for TransactionEntryMode
Source§impl Default for TransactionEntryMode
impl Default for TransactionEntryMode
Source§fn default() -> TransactionEntryMode
fn default() -> TransactionEntryMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionEntryMode
impl<'de> Deserialize<'de> for TransactionEntryMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TransactionEntryMode
Source§impl PartialEq for TransactionEntryMode
impl PartialEq for TransactionEntryMode
Source§impl Serialize for TransactionEntryMode
impl Serialize for TransactionEntryMode
impl StructuralPartialEq for TransactionEntryMode
Auto Trait Implementations§
impl Freeze for TransactionEntryMode
impl RefUnwindSafe for TransactionEntryMode
impl Send for TransactionEntryMode
impl Sync for TransactionEntryMode
impl Unpin for TransactionEntryMode
impl UnsafeUnpin for TransactionEntryMode
impl UnwindSafe for TransactionEntryMode
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