pub struct CardRangeData {
pub start_range: String,
pub end_range: String,
pub action_ind: ActionIndicator,
pub acs_start_protocol_version: String,
pub acs_end_protocol_version: String,
pub three_ds_method_url: Option<String>,
pub ds_start_protocol_version: Option<String>,
pub ds_end_protocol_version: Option<String>,
pub ds_trans_id: Option<String>,
pub acs_info_ind: Option<Vec<String>>,
}Expand description
A single BIN-range entry returned in a PRes payload.
Fields§
§start_range: String§end_range: String§action_ind: ActionIndicator§acs_start_protocol_version: String§acs_end_protocol_version: String§three_ds_method_url: Option<String>§ds_start_protocol_version: Option<String>§ds_end_protocol_version: Option<String>§ds_trans_id: Option<String>§acs_info_ind: Option<Vec<String>>Trait Implementations§
Source§impl Clone for CardRangeData
impl Clone for CardRangeData
Source§fn clone(&self) -> CardRangeData
fn clone(&self) -> CardRangeData
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 Debug for CardRangeData
impl Debug for CardRangeData
Source§impl<'de> Deserialize<'de> for CardRangeData
impl<'de> Deserialize<'de> for CardRangeData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CardRangeData
impl RefUnwindSafe for CardRangeData
impl Send for CardRangeData
impl Sync for CardRangeData
impl Unpin for CardRangeData
impl UnsafeUnpin for CardRangeData
impl UnwindSafe for CardRangeData
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