pub enum IssuingAuthorizationFleetDataPurchaseType {
FuelAndNonFuelPurchase,
FuelPurchase,
NonFuelPurchase,
}
Expand description
The type of purchase.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IssuingAuthorizationFleetDataPurchaseType
impl Clone for IssuingAuthorizationFleetDataPurchaseType
Source§fn clone(&self) -> IssuingAuthorizationFleetDataPurchaseType
fn clone(&self) -> IssuingAuthorizationFleetDataPurchaseType
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 IssuingAuthorizationFleetDataPurchaseType
impl FromStr for IssuingAuthorizationFleetDataPurchaseType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<IssuingAuthorizationFleetDataPurchaseType, <IssuingAuthorizationFleetDataPurchaseType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<IssuingAuthorizationFleetDataPurchaseType, <IssuingAuthorizationFleetDataPurchaseType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for IssuingAuthorizationFleetDataPurchaseType
impl PartialEq for IssuingAuthorizationFleetDataPurchaseType
Source§fn eq(&self, other: &IssuingAuthorizationFleetDataPurchaseType) -> bool
fn eq(&self, other: &IssuingAuthorizationFleetDataPurchaseType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for IssuingAuthorizationFleetDataPurchaseType
impl Eq for IssuingAuthorizationFleetDataPurchaseType
impl StructuralPartialEq for IssuingAuthorizationFleetDataPurchaseType
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationFleetDataPurchaseType
impl RefUnwindSafe for IssuingAuthorizationFleetDataPurchaseType
impl Send for IssuingAuthorizationFleetDataPurchaseType
impl Sync for IssuingAuthorizationFleetDataPurchaseType
impl Unpin for IssuingAuthorizationFleetDataPurchaseType
impl UnwindSafe for IssuingAuthorizationFleetDataPurchaseType
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