#[non_exhaustive]pub struct CryptogramVerificationArpcMethod1 {
pub auth_response_code: Option<String>,
}
Expand description
Parameters that are required for ARPC response generation using method1 after ARQC verification is successful.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auth_response_code: Option<String>
The auth code used to calculate APRC after ARQC verification is successful. This is the same auth code used for ARQC generation outside of Amazon Web Services Payment Cryptography.
Implementations§
source§impl CryptogramVerificationArpcMethod1
impl CryptogramVerificationArpcMethod1
sourcepub fn auth_response_code(&self) -> Option<&str>
pub fn auth_response_code(&self) -> Option<&str>
The auth code used to calculate APRC after ARQC verification is successful. This is the same auth code used for ARQC generation outside of Amazon Web Services Payment Cryptography.
source§impl CryptogramVerificationArpcMethod1
impl CryptogramVerificationArpcMethod1
sourcepub fn builder() -> CryptogramVerificationArpcMethod1Builder
pub fn builder() -> CryptogramVerificationArpcMethod1Builder
Creates a new builder-style object to manufacture CryptogramVerificationArpcMethod1
.
Trait Implementations§
source§impl Clone for CryptogramVerificationArpcMethod1
impl Clone for CryptogramVerificationArpcMethod1
source§fn clone(&self) -> CryptogramVerificationArpcMethod1
fn clone(&self) -> CryptogramVerificationArpcMethod1
Returns a copy of the value. Read more
1.0.0 · 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 CryptogramVerificationArpcMethod1
impl PartialEq for CryptogramVerificationArpcMethod1
source§fn eq(&self, other: &CryptogramVerificationArpcMethod1) -> bool
fn eq(&self, other: &CryptogramVerificationArpcMethod1) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CryptogramVerificationArpcMethod1
Auto Trait Implementations§
impl RefUnwindSafe for CryptogramVerificationArpcMethod1
impl Send for CryptogramVerificationArpcMethod1
impl Sync for CryptogramVerificationArpcMethod1
impl Unpin for CryptogramVerificationArpcMethod1
impl UnwindSafe for CryptogramVerificationArpcMethod1
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