pub struct MasterCardFeedItemData {
pub merchant_identifier: String,
pub mcc: i32,
pub pos_timestamp: LocalTime,
pub authorisation_code: String,
pub card_last_4: String,
}
Expand description
The MasterCard feed item details
Fields§
§merchant_identifier: String
The identifier for the merchant
mcc: i32
The category given by the merchant
pos_timestamp: LocalTime
The point of sale timestamp
The authorisation code for the feed item
card_last_4: String
The last 4 digits on the card
Trait Implementations§
Source§impl Clone for MasterCardFeedItemData
impl Clone for MasterCardFeedItemData
Source§fn clone(&self) -> MasterCardFeedItemData
fn clone(&self) -> MasterCardFeedItemData
Returns a duplicate 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 MasterCardFeedItemData
impl Debug for MasterCardFeedItemData
Source§impl<'de> Deserialize<'de> for MasterCardFeedItemData
impl<'de> Deserialize<'de> for MasterCardFeedItemData
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
Source§impl PartialEq for MasterCardFeedItemData
impl PartialEq for MasterCardFeedItemData
impl Eq for MasterCardFeedItemData
impl StructuralPartialEq for MasterCardFeedItemData
Auto Trait Implementations§
impl Freeze for MasterCardFeedItemData
impl RefUnwindSafe for MasterCardFeedItemData
impl Send for MasterCardFeedItemData
impl Sync for MasterCardFeedItemData
impl Unpin for MasterCardFeedItemData
impl UnwindSafe for MasterCardFeedItemData
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