pub struct IssuingAuthorizationFraudChallenge {
pub channel: IssuingAuthorizationFraudChallengeChannel,
pub status: IssuingAuthorizationFraudChallengeStatus,
pub undeliverable_reason: Option<IssuingAuthorizationFraudChallengeUndeliverableReason>,
}Fields§
§channel: IssuingAuthorizationFraudChallengeChannelThe method by which the fraud challenge was delivered to the cardholder.
status: IssuingAuthorizationFraudChallengeStatusThe status of the fraud challenge.
undeliverable_reason: Option<IssuingAuthorizationFraudChallengeUndeliverableReason>If the challenge is not deliverable, the reason why.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationFraudChallenge
impl Clone for IssuingAuthorizationFraudChallenge
Source§fn clone(&self) -> IssuingAuthorizationFraudChallenge
fn clone(&self) -> IssuingAuthorizationFraudChallenge
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 moreSource§impl FromValueOpt for IssuingAuthorizationFraudChallenge
impl FromValueOpt for IssuingAuthorizationFraudChallenge
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingAuthorizationFraudChallenge
impl PartialEq for IssuingAuthorizationFraudChallenge
Source§fn eq(&self, other: &IssuingAuthorizationFraudChallenge) -> bool
fn eq(&self, other: &IssuingAuthorizationFraudChallenge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingAuthorizationFraudChallenge
impl StructuralPartialEq for IssuingAuthorizationFraudChallenge
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationFraudChallenge
impl RefUnwindSafe for IssuingAuthorizationFraudChallenge
impl Send for IssuingAuthorizationFraudChallenge
impl Sync for IssuingAuthorizationFraudChallenge
impl Unpin for IssuingAuthorizationFraudChallenge
impl UnsafeUnpin for IssuingAuthorizationFraudChallenge
impl UnwindSafe for IssuingAuthorizationFraudChallenge
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