pub struct Entrant {
pub entrant_i_d: String,
pub entrant_tag: Option<String>,
pub initial_seed: Option<u32>,
pub final_placement: Option<u32>,
pub personal_information: Option<PersonalInformation>,
pub other: Option<HashMap<String, String>>,
}
Fields§
§entrant_i_d: String
§entrant_tag: Option<String>
§initial_seed: Option<u32>
§final_placement: Option<u32>
§personal_information: Option<PersonalInformation>
§other: Option<HashMap<String, String>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entrant
impl<'de> Deserialize<'de> for Entrant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Entrant
impl RefUnwindSafe for Entrant
impl Send for Entrant
impl Sync for Entrant
impl Unpin for Entrant
impl UnwindSafe for Entrant
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