pub struct CtfEventData {
pub id: u64,
pub name: String,
pub status: Option<String>,
pub hide_scoreboard: Option<u32>,
pub participating_team: Option<CtfParticipatingTeam>,
pub challenges: Vec<CtfChallenge>,
}Fields§
§id: u64§name: String§status: Option<String>§hide_scoreboard: Option<u32>§participating_team: Option<CtfParticipatingTeam>§challenges: Vec<CtfChallenge>Trait Implementations§
Source§impl Debug for CtfEventData
impl Debug for CtfEventData
Source§impl<'de> Deserialize<'de> for CtfEventData
impl<'de> Deserialize<'de> for CtfEventData
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 CtfEventData
impl RefUnwindSafe for CtfEventData
impl Send for CtfEventData
impl Sync for CtfEventData
impl Unpin for CtfEventData
impl UnsafeUnpin for CtfEventData
impl UnwindSafe for CtfEventData
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