pub struct PersonEthnicityDetails {
pub ethnicity: Option<Vec<PersonEthnicityDetailsEthnicity>>,
pub ethnicity_other: Option<String>,
}
Fields§
§ethnicity: Option<Vec<PersonEthnicityDetailsEthnicity>>
The persons ethnicity
ethnicity_other: Option<String>
Please specify your origin, when other is selected.
Trait Implementations§
Source§impl Clone for PersonEthnicityDetails
impl Clone for PersonEthnicityDetails
Source§fn clone(&self) -> PersonEthnicityDetails
fn clone(&self) -> PersonEthnicityDetails
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 PersonEthnicityDetails
impl Debug for PersonEthnicityDetails
Source§impl Deserialize for PersonEthnicityDetails
impl Deserialize for PersonEthnicityDetails
Source§impl ObjectDeser for PersonEthnicityDetails
impl ObjectDeser for PersonEthnicityDetails
Auto Trait Implementations§
impl Freeze for PersonEthnicityDetails
impl RefUnwindSafe for PersonEthnicityDetails
impl Send for PersonEthnicityDetails
impl Sync for PersonEthnicityDetails
impl Unpin for PersonEthnicityDetails
impl UnwindSafe for PersonEthnicityDetails
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