pub struct TeamSubsection {
pub score: u16,
pub consecutive_round_losses: u16,
pub timeouts_remaining: u16,
pub matches_won_this_series: u16,
pub name: Option<String>,
}Fields§
§score: u16Score of this team.
consecutive_round_losses: u16Number of consecutive rounds losses of this team.
timeouts_remaining: u16Number of timeouts remaining for this team.
matches_won_this_series: u16Number of matches won by this team, in this series.
Used on “Best of X” games.
name: Option<String>Name of this team.
Trait Implementations§
Source§impl Clone for TeamSubsection
impl Clone for TeamSubsection
Source§fn clone(&self) -> TeamSubsection
fn clone(&self) -> TeamSubsection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TeamSubsection
impl Debug for TeamSubsection
Source§impl<'de> Deserialize<'de> for TeamSubsection
impl<'de> Deserialize<'de> for TeamSubsection
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 TeamSubsection
impl RefUnwindSafe for TeamSubsection
impl Send for TeamSubsection
impl Sync for TeamSubsection
impl Unpin for TeamSubsection
impl UnwindSafe for TeamSubsection
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