#[non_exhaustive]pub enum CreateTokenPersonUsCfpbDataRaceDetailsRace {
Show 25 variants
AfricanAmerican,
AmericanIndianOrAlaskaNative,
Asian,
AsianIndian,
BlackOrAfricanAmerican,
Chinese,
Ethiopian,
Filipino,
GuamanianOrChamorro,
Haitian,
Jamaican,
Japanese,
Korean,
NativeHawaiian,
NativeHawaiianOrOtherPacificIslander,
Nigerian,
OtherAsian,
OtherBlackOrAfricanAmerican,
OtherPacificIslander,
PreferNotToAnswer,
Samoan,
Somali,
Vietnamese,
White,
Unknown(String),
}
Expand description
The persons race.
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.
AfricanAmerican
AmericanIndianOrAlaskaNative
Asian
AsianIndian
BlackOrAfricanAmerican
Chinese
Ethiopian
Filipino
GuamanianOrChamorro
Haitian
Jamaican
Japanese
Korean
NativeHawaiian
NativeHawaiianOrOtherPacificIslander
Nigerian
OtherAsian
OtherBlackOrAfricanAmerican
OtherPacificIslander
PreferNotToAnswer
Samoan
Somali
Vietnamese
White
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl Clone for CreateTokenPersonUsCfpbDataRaceDetailsRace
Source§fn clone(&self) -> CreateTokenPersonUsCfpbDataRaceDetailsRace
fn clone(&self) -> CreateTokenPersonUsCfpbDataRaceDetailsRace
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 PartialEq for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl PartialEq for CreateTokenPersonUsCfpbDataRaceDetailsRace
Source§fn eq(&self, other: &CreateTokenPersonUsCfpbDataRaceDetailsRace) -> bool
fn eq(&self, other: &CreateTokenPersonUsCfpbDataRaceDetailsRace) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl StructuralPartialEq for CreateTokenPersonUsCfpbDataRaceDetailsRace
Auto Trait Implementations§
impl Freeze for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl RefUnwindSafe for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl Send for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl Sync for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl Unpin for CreateTokenPersonUsCfpbDataRaceDetailsRace
impl UnwindSafe for CreateTokenPersonUsCfpbDataRaceDetailsRace
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