pub enum Eci {
VisaFullyAuthenticated,
VisaAttempted,
VisaNotAuthenticated,
MastercardFullyAuthenticated,
MastercardAttempted,
MastercardNotAuthenticated,
}Expand description
Electronic Commerce Indicator — liability shift outcome.
Variants§
VisaFullyAuthenticated
Visa: fully authenticated
VisaAttempted
Visa: attempted
VisaNotAuthenticated
Visa: not authenticated / no liability shift
MastercardFullyAuthenticated
Mastercard: fully authenticated
MastercardAttempted
Mastercard: attempted
MastercardNotAuthenticated
Mastercard: not authenticated
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Eci
impl<'de> Deserialize<'de> for Eci
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 Copy for Eci
impl Eq for Eci
impl StructuralPartialEq for Eci
Auto Trait Implementations§
impl Freeze for Eci
impl RefUnwindSafe for Eci
impl Send for Eci
impl Sync for Eci
impl Unpin for Eci
impl UnsafeUnpin for Eci
impl UnwindSafe for Eci
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