#[non_exhaustive]pub struct Ibm3624PinFromOffset {
pub decimalization_table: Option<String>,
pub pin_validation_data_pad_character: Option<String>,
pub pin_validation_data: Option<String>,
pub pin_offset: Option<String>,
}
Expand description
Parameters that are required to generate or verify Ibm3624 PIN from offset PIN.
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.decimalization_table: Option<String>
The decimalization table to use for IBM 3624 PIN algorithm. The table is used to convert the algorithm intermediate result from hexadecimal characters to decimal.
pin_validation_data_pad_character: Option<String>
The padding character for validation data.
pin_validation_data: Option<String>
The unique data for cardholder identification.
pin_offset: Option<String>
The PIN offset value.
Implementations§
source§impl Ibm3624PinFromOffset
impl Ibm3624PinFromOffset
sourcepub fn decimalization_table(&self) -> Option<&str>
pub fn decimalization_table(&self) -> Option<&str>
The decimalization table to use for IBM 3624 PIN algorithm. The table is used to convert the algorithm intermediate result from hexadecimal characters to decimal.
sourcepub fn pin_validation_data_pad_character(&self) -> Option<&str>
pub fn pin_validation_data_pad_character(&self) -> Option<&str>
The padding character for validation data.
sourcepub fn pin_validation_data(&self) -> Option<&str>
pub fn pin_validation_data(&self) -> Option<&str>
The unique data for cardholder identification.
sourcepub fn pin_offset(&self) -> Option<&str>
pub fn pin_offset(&self) -> Option<&str>
The PIN offset value.
source§impl Ibm3624PinFromOffset
impl Ibm3624PinFromOffset
sourcepub fn builder() -> Ibm3624PinFromOffsetBuilder
pub fn builder() -> Ibm3624PinFromOffsetBuilder
Creates a new builder-style object to manufacture Ibm3624PinFromOffset
.
Trait Implementations§
source§impl Clone for Ibm3624PinFromOffset
impl Clone for Ibm3624PinFromOffset
source§fn clone(&self) -> Ibm3624PinFromOffset
fn clone(&self) -> Ibm3624PinFromOffset
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 Ibm3624PinFromOffset
impl Debug for Ibm3624PinFromOffset
source§impl PartialEq<Ibm3624PinFromOffset> for Ibm3624PinFromOffset
impl PartialEq<Ibm3624PinFromOffset> for Ibm3624PinFromOffset
source§fn eq(&self, other: &Ibm3624PinFromOffset) -> bool
fn eq(&self, other: &Ibm3624PinFromOffset) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Ibm3624PinFromOffset
Auto Trait Implementations§
impl RefUnwindSafe for Ibm3624PinFromOffset
impl Send for Ibm3624PinFromOffset
impl Sync for Ibm3624PinFromOffset
impl Unpin for Ibm3624PinFromOffset
impl UnwindSafe for Ibm3624PinFromOffset
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