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