#[non_exhaustive]pub struct Ibm3624RandomPinBuilder { /* private fields */ }
Expand description
A builder for Ibm3624RandomPin
.
Implementations§
source§impl Ibm3624RandomPinBuilder
impl Ibm3624RandomPinBuilder
sourcepub fn decimalization_table(self, input: impl Into<String>) -> Self
pub fn decimalization_table(self, input: impl Into<String>) -> Self
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 set_decimalization_table(self, input: Option<String>) -> Self
pub fn set_decimalization_table(self, input: Option<String>) -> Self
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 get_decimalization_table(&self) -> &Option<String>
pub fn get_decimalization_table(&self) -> &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.
sourcepub fn pin_validation_data_pad_character(self, input: impl Into<String>) -> Self
pub fn pin_validation_data_pad_character(self, input: impl Into<String>) -> Self
The padding character for validation data.
sourcepub fn set_pin_validation_data_pad_character(
self,
input: Option<String>
) -> Self
pub fn set_pin_validation_data_pad_character( self, input: Option<String> ) -> Self
The padding character for validation data.
sourcepub fn get_pin_validation_data_pad_character(&self) -> &Option<String>
pub fn get_pin_validation_data_pad_character(&self) -> &Option<String>
The padding character for validation data.
sourcepub fn pin_validation_data(self, input: impl Into<String>) -> Self
pub fn pin_validation_data(self, input: impl Into<String>) -> Self
The unique data for cardholder identification.
sourcepub fn set_pin_validation_data(self, input: Option<String>) -> Self
pub fn set_pin_validation_data(self, input: Option<String>) -> Self
The unique data for cardholder identification.
sourcepub fn get_pin_validation_data(&self) -> &Option<String>
pub fn get_pin_validation_data(&self) -> &Option<String>
The unique data for cardholder identification.
sourcepub fn build(self) -> Ibm3624RandomPin
pub fn build(self) -> Ibm3624RandomPin
Consumes the builder and constructs a Ibm3624RandomPin
.
Trait Implementations§
source§impl Clone for Ibm3624RandomPinBuilder
impl Clone for Ibm3624RandomPinBuilder
source§fn clone(&self) -> Ibm3624RandomPinBuilder
fn clone(&self) -> Ibm3624RandomPinBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Ibm3624RandomPinBuilder
impl Debug for Ibm3624RandomPinBuilder
source§impl Default for Ibm3624RandomPinBuilder
impl Default for Ibm3624RandomPinBuilder
source§fn default() -> Ibm3624RandomPinBuilder
fn default() -> Ibm3624RandomPinBuilder
source§impl PartialEq<Ibm3624RandomPinBuilder> for Ibm3624RandomPinBuilder
impl PartialEq<Ibm3624RandomPinBuilder> for Ibm3624RandomPinBuilder
source§fn eq(&self, other: &Ibm3624RandomPinBuilder) -> bool
fn eq(&self, other: &Ibm3624RandomPinBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.