#[non_exhaustive]pub enum MandateAcssDebitTransactionType {
Business,
Personal,
Unknown(String),
}Expand description
Transaction type of the mandate.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Business
Personal
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for MandateAcssDebitTransactionType
impl Clone for MandateAcssDebitTransactionType
Source§fn clone(&self) -> MandateAcssDebitTransactionType
fn clone(&self) -> MandateAcssDebitTransactionType
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 FromStr for MandateAcssDebitTransactionType
impl FromStr for MandateAcssDebitTransactionType
Source§type Err = Infallible
type Err = Infallible
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<MandateAcssDebitTransactionType, <MandateAcssDebitTransactionType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<MandateAcssDebitTransactionType, <MandateAcssDebitTransactionType as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for MandateAcssDebitTransactionType
impl PartialEq for MandateAcssDebitTransactionType
Source§fn eq(&self, other: &MandateAcssDebitTransactionType) -> bool
fn eq(&self, other: &MandateAcssDebitTransactionType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MandateAcssDebitTransactionType
impl StructuralPartialEq for MandateAcssDebitTransactionType
Auto Trait Implementations§
impl Freeze for MandateAcssDebitTransactionType
impl RefUnwindSafe for MandateAcssDebitTransactionType
impl Send for MandateAcssDebitTransactionType
impl Sync for MandateAcssDebitTransactionType
impl Unpin for MandateAcssDebitTransactionType
impl UnwindSafe for MandateAcssDebitTransactionType
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