#[non_exhaustive]pub struct VisaPinVerificationBuilder { /* private fields */ }
Expand description
A builder for VisaPinVerification
.
Implementations§
source§impl VisaPinVerificationBuilder
impl VisaPinVerificationBuilder
sourcepub fn pin_verification_key_index(self, input: i32) -> Self
pub fn pin_verification_key_index(self, input: i32) -> Self
The value for PIN verification index. It is used in the Visa PIN algorithm to calculate the PVV (PIN Verification Value).
sourcepub fn set_pin_verification_key_index(self, input: Option<i32>) -> Self
pub fn set_pin_verification_key_index(self, input: Option<i32>) -> Self
The value for PIN verification index. It is used in the Visa PIN algorithm to calculate the PVV (PIN Verification Value).
sourcepub fn get_pin_verification_key_index(&self) -> &Option<i32>
pub fn get_pin_verification_key_index(&self) -> &Option<i32>
The value for PIN verification index. It is used in the Visa PIN algorithm to calculate the PVV (PIN Verification Value).
sourcepub fn verification_value(self, input: impl Into<String>) -> Self
pub fn verification_value(self, input: impl Into<String>) -> Self
Parameters that are required to generate or verify Visa PVV (PIN Verification Value).
sourcepub fn set_verification_value(self, input: Option<String>) -> Self
pub fn set_verification_value(self, input: Option<String>) -> Self
Parameters that are required to generate or verify Visa PVV (PIN Verification Value).
sourcepub fn get_verification_value(&self) -> &Option<String>
pub fn get_verification_value(&self) -> &Option<String>
Parameters that are required to generate or verify Visa PVV (PIN Verification Value).
sourcepub fn build(self) -> VisaPinVerification
pub fn build(self) -> VisaPinVerification
Consumes the builder and constructs a VisaPinVerification
.
Trait Implementations§
source§impl Clone for VisaPinVerificationBuilder
impl Clone for VisaPinVerificationBuilder
source§fn clone(&self) -> VisaPinVerificationBuilder
fn clone(&self) -> VisaPinVerificationBuilder
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 Debug for VisaPinVerificationBuilder
impl Debug for VisaPinVerificationBuilder
source§impl Default for VisaPinVerificationBuilder
impl Default for VisaPinVerificationBuilder
source§fn default() -> VisaPinVerificationBuilder
fn default() -> VisaPinVerificationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for VisaPinVerificationBuilder
impl PartialEq for VisaPinVerificationBuilder
source§fn eq(&self, other: &VisaPinVerificationBuilder) -> bool
fn eq(&self, other: &VisaPinVerificationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VisaPinVerificationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for VisaPinVerificationBuilder
impl Send for VisaPinVerificationBuilder
impl Sync for VisaPinVerificationBuilder
impl Unpin for VisaPinVerificationBuilder
impl UnwindSafe for VisaPinVerificationBuilder
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