#[non_exhaustive]pub enum CheckoutSessionSubmitType {
Auto,
Book,
Donate,
Pay,
Subscribe,
Unknown(String),
}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.
Auto
Book
Donate
Pay
Subscribe
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CheckoutSessionSubmitType
impl Clone for CheckoutSessionSubmitType
Source§fn clone(&self) -> CheckoutSessionSubmitType
fn clone(&self) -> CheckoutSessionSubmitType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CheckoutSessionSubmitType
Available on non-crate feature redact-generated-debug only.
impl Debug for CheckoutSessionSubmitType
Available on non-crate feature
redact-generated-debug only.Source§impl Display for CheckoutSessionSubmitType
impl Display for CheckoutSessionSubmitType
Source§impl FromStr for CheckoutSessionSubmitType
impl FromStr for CheckoutSessionSubmitType
Source§impl FromValueOpt for CheckoutSessionSubmitType
impl FromValueOpt for CheckoutSessionSubmitType
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for CheckoutSessionSubmitType
impl PartialEq for CheckoutSessionSubmitType
Source§fn eq(&self, other: &CheckoutSessionSubmitType) -> bool
fn eq(&self, other: &CheckoutSessionSubmitType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CheckoutSessionSubmitType
impl StructuralPartialEq for CheckoutSessionSubmitType
Auto Trait Implementations§
impl Freeze for CheckoutSessionSubmitType
impl RefUnwindSafe for CheckoutSessionSubmitType
impl Send for CheckoutSessionSubmitType
impl Sync for CheckoutSessionSubmitType
impl Unpin for CheckoutSessionSubmitType
impl UnsafeUnpin for CheckoutSessionSubmitType
impl UnwindSafe for CheckoutSessionSubmitType
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