pub enum CardFundingType {
Credit,
Debit,
Prepaid,
}Variants§
Trait Implementations§
Source§impl Clone for CardFundingType
impl Clone for CardFundingType
Source§fn clone(&self) -> CardFundingType
fn clone(&self) -> CardFundingType
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 CardFundingType
impl Debug for CardFundingType
Source§impl<'de> Deserialize<'de> for CardFundingType
impl<'de> Deserialize<'de> for CardFundingType
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 Display for CardFundingType
impl Display for CardFundingType
Source§impl Hash for CardFundingType
impl Hash for CardFundingType
Source§impl Ord for CardFundingType
impl Ord for CardFundingType
Source§fn cmp(&self, other: &CardFundingType) -> Ordering
fn cmp(&self, other: &CardFundingType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CardFundingType
impl PartialEq for CardFundingType
Source§impl PartialOrd for CardFundingType
impl PartialOrd for CardFundingType
Source§impl Serialize for CardFundingType
impl Serialize for CardFundingType
impl Copy for CardFundingType
impl Eq for CardFundingType
impl StructuralPartialEq for CardFundingType
Auto Trait Implementations§
impl Freeze for CardFundingType
impl RefUnwindSafe for CardFundingType
impl Send for CardFundingType
impl Sync for CardFundingType
impl Unpin for CardFundingType
impl UnwindSafe for CardFundingType
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