pub struct CreateIssuingAuthorizationVerificationDataAuthenticationExemption {
pub claimed_by: CreateIssuingAuthorizationVerificationDataAuthenticationExemptionClaimedBy,
pub type_: CreateIssuingAuthorizationVerificationDataAuthenticationExemptionType,
}Expand description
The exemption applied to this authorization.
Fields§
§claimed_by: CreateIssuingAuthorizationVerificationDataAuthenticationExemptionClaimedByThe entity that requested the exemption, either the acquiring merchant or the Issuing user.
type_: CreateIssuingAuthorizationVerificationDataAuthenticationExemptionTypeThe specific exemption claimed for this authorization.
Implementations§
Source§impl CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl CreateIssuingAuthorizationVerificationDataAuthenticationExemption
pub fn new( claimed_by: impl Into<CreateIssuingAuthorizationVerificationDataAuthenticationExemptionClaimedBy>, type_: impl Into<CreateIssuingAuthorizationVerificationDataAuthenticationExemptionType>, ) -> Self
Trait Implementations§
Source§impl Clone for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl Clone for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
Source§fn clone(
&self,
) -> CreateIssuingAuthorizationVerificationDataAuthenticationExemption
fn clone( &self, ) -> CreateIssuingAuthorizationVerificationDataAuthenticationExemption
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 PartialEq for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl PartialEq for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
Source§fn eq(
&self,
other: &CreateIssuingAuthorizationVerificationDataAuthenticationExemption,
) -> bool
fn eq( &self, other: &CreateIssuingAuthorizationVerificationDataAuthenticationExemption, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl StructuralPartialEq for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
Auto Trait Implementations§
impl Freeze for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl RefUnwindSafe for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl Send for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl Sync for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl Unpin for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl UnsafeUnpin for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
impl UnwindSafe for CreateIssuingAuthorizationVerificationDataAuthenticationExemption
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