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