pub struct Simul {Show 14 fields
pub id: String,
pub name: String,
pub full_name: String,
pub host: Host,
pub is_created: bool,
pub is_finished: bool,
pub is_running: bool,
pub estimated_start_at: u64,
pub started_at: u64,
pub finished_at: Option<u64>,
pub applicants: u32,
pub pairings: u32,
pub text: String,
pub variants: Vec<Variant>,
}Fields§
§id: String§name: String§full_name: String§host: Host§is_created: bool§is_finished: bool§is_running: bool§estimated_start_at: u64§started_at: u64§finished_at: Option<u64>§applicants: u32§pairings: u32§text: String§variants: Vec<Variant>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Simul
impl<'de> Deserialize<'de> for Simul
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 Simul
impl RefUnwindSafe for Simul
impl Send for Simul
impl Sync for Simul
impl Unpin for Simul
impl UnwindSafe for Simul
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