pub enum TenderCardDetailsEntryMethod {
Swiped,
Keyed,
Emv,
OnFile,
Contactless,
}
Expand description
Indicates the method used to enter the card’s details.
Variants§
Swiped
The card was swiped through a Square reader or Square stand.
Keyed
The card information was keyed manually into Square Point of Sale or a Square-hosted web form.
Emv
The card was processed via EMV with a Square reader.
OnFile
The buyer’s card details were already on file with Square.
Contactless
The card was processed via a contactless (i.e., NFC) transaction with a Square reader.
Trait Implementations§
Source§impl Clone for TenderCardDetailsEntryMethod
impl Clone for TenderCardDetailsEntryMethod
Source§fn clone(&self) -> TenderCardDetailsEntryMethod
fn clone(&self) -> TenderCardDetailsEntryMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TenderCardDetailsEntryMethod
impl Debug for TenderCardDetailsEntryMethod
Source§impl<'de> Deserialize<'de> for TenderCardDetailsEntryMethod
impl<'de> Deserialize<'de> for TenderCardDetailsEntryMethod
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
Source§impl PartialEq for TenderCardDetailsEntryMethod
impl PartialEq for TenderCardDetailsEntryMethod
Source§fn eq(&self, other: &TenderCardDetailsEntryMethod) -> bool
fn eq(&self, other: &TenderCardDetailsEntryMethod) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for TenderCardDetailsEntryMethod
impl StructuralPartialEq for TenderCardDetailsEntryMethod
Auto Trait Implementations§
impl Freeze for TenderCardDetailsEntryMethod
impl RefUnwindSafe for TenderCardDetailsEntryMethod
impl Send for TenderCardDetailsEntryMethod
impl Sync for TenderCardDetailsEntryMethod
impl Unpin for TenderCardDetailsEntryMethod
impl UnwindSafe for TenderCardDetailsEntryMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.