pub struct BillingCard {
pub issuer_code: CardCode,
pub acquirer_code: CardCode,
pub number: String,
pub card_type: CardType,
pub owner_type: OwnerType,
}
Fields§
§issuer_code: CardCode
§acquirer_code: CardCode
§number: String
§card_type: CardType
§owner_type: OwnerType
Trait Implementations§
Source§impl Clone for BillingCard
impl Clone for BillingCard
Source§fn clone(&self) -> BillingCard
fn clone(&self) -> BillingCard
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 BillingCard
impl Debug for BillingCard
Source§impl<'de> Deserialize<'de> for BillingCard
impl<'de> Deserialize<'de> for BillingCard
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 BillingCard
impl RefUnwindSafe for BillingCard
impl Send for BillingCard
impl Sync for BillingCard
impl Unpin for BillingCard
impl UnwindSafe for BillingCard
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