pub enum PersonEthnicityDetailsEthnicity {
Cuban,
HispanicOrLatino,
Mexican,
NotHispanicOrLatino,
OtherHispanicOrLatino,
PreferNotToAnswer,
PuertoRican,
}
Expand description
The persons ethnicity
Variants§
Cuban
HispanicOrLatino
Mexican
NotHispanicOrLatino
OtherHispanicOrLatino
PreferNotToAnswer
PuertoRican
Implementations§
Trait Implementations§
Source§impl Clone for PersonEthnicityDetailsEthnicity
impl Clone for PersonEthnicityDetailsEthnicity
Source§fn clone(&self) -> PersonEthnicityDetailsEthnicity
fn clone(&self) -> PersonEthnicityDetailsEthnicity
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 FromValueOpt for PersonEthnicityDetailsEthnicity
impl FromValueOpt for PersonEthnicityDetailsEthnicity
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PersonEthnicityDetailsEthnicity
impl PartialEq for PersonEthnicityDetailsEthnicity
Source§fn eq(&self, other: &PersonEthnicityDetailsEthnicity) -> bool
fn eq(&self, other: &PersonEthnicityDetailsEthnicity) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for PersonEthnicityDetailsEthnicity
impl Eq for PersonEthnicityDetailsEthnicity
impl StructuralPartialEq for PersonEthnicityDetailsEthnicity
Auto Trait Implementations§
impl Freeze for PersonEthnicityDetailsEthnicity
impl RefUnwindSafe for PersonEthnicityDetailsEthnicity
impl Send for PersonEthnicityDetailsEthnicity
impl Sync for PersonEthnicityDetailsEthnicity
impl Unpin for PersonEthnicityDetailsEthnicity
impl UnwindSafe for PersonEthnicityDetailsEthnicity
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