pub struct CtfParticipatingTeam {
pub id: u64,
pub name: String,
pub points: Option<u32>,
pub solved_challenges: Option<u32>,
pub total_challenges: Option<u32>,
pub owned_flags: Option<u32>,
pub total_flags: Option<u32>,
pub rank: Option<u32>,
pub is_captain: bool,
}Fields§
§id: u64§name: String§points: Option<u32>§solved_challenges: Option<u32>§total_challenges: Option<u32>§owned_flags: Option<u32>§total_flags: Option<u32>§rank: Option<u32>§is_captain: boolTrait Implementations§
Source§impl Debug for CtfParticipatingTeam
impl Debug for CtfParticipatingTeam
Source§impl<'de> Deserialize<'de> for CtfParticipatingTeam
impl<'de> Deserialize<'de> for CtfParticipatingTeam
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 CtfParticipatingTeam
impl RefUnwindSafe for CtfParticipatingTeam
impl Send for CtfParticipatingTeam
impl Sync for CtfParticipatingTeam
impl Unpin for CtfParticipatingTeam
impl UnsafeUnpin for CtfParticipatingTeam
impl UnwindSafe for CtfParticipatingTeam
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