#[non_exhaustive]pub enum CheckoutSessionLocale {
Show 42 variants
Auto,
Bg,
Cs,
Da,
De,
El,
En,
EnMinusGb,
Es,
EsMinus419,
Et,
Fi,
Fil,
Fr,
FrMinusCa,
Hr,
Hu,
Id,
It,
Ja,
Ko,
Lt,
Lv,
Ms,
Mt,
Nb,
Nl,
Pl,
Pt,
PtMinusBr,
Ro,
Ru,
Sk,
Sl,
Sv,
Th,
Tr,
Vi,
Zh,
ZhMinusHk,
ZhMinusTw,
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
Bg
Cs
Da
De
El
En
EnMinusGb
Es
EsMinus419
Et
Fi
Fil
Fr
FrMinusCa
Hr
Hu
Id
It
Ja
Ko
Lt
Lv
Ms
Mt
Nb
Nl
Pl
Pt
PtMinusBr
Ro
Ru
Sk
Sl
Sv
Th
Tr
Vi
Zh
ZhMinusHk
ZhMinusTw
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CheckoutSessionLocale
impl Clone for CheckoutSessionLocale
Source§fn clone(&self) -> CheckoutSessionLocale
fn clone(&self) -> CheckoutSessionLocale
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 CheckoutSessionLocale
impl Debug for CheckoutSessionLocale
Source§impl Deserialize for CheckoutSessionLocale
impl Deserialize for CheckoutSessionLocale
Source§impl Display for CheckoutSessionLocale
impl Display for CheckoutSessionLocale
Source§impl FromStr for CheckoutSessionLocale
impl FromStr for CheckoutSessionLocale
Source§impl FromValueOpt for CheckoutSessionLocale
impl FromValueOpt for CheckoutSessionLocale
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for CheckoutSessionLocale
impl PartialEq for CheckoutSessionLocale
Source§impl Serialize for CheckoutSessionLocale
impl Serialize for CheckoutSessionLocale
impl Eq for CheckoutSessionLocale
impl StructuralPartialEq for CheckoutSessionLocale
Auto Trait Implementations§
impl Freeze for CheckoutSessionLocale
impl RefUnwindSafe for CheckoutSessionLocale
impl Send for CheckoutSessionLocale
impl Sync for CheckoutSessionLocale
impl Unpin for CheckoutSessionLocale
impl UnwindSafe for CheckoutSessionLocale
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