pub struct StandingsGroup {
pub name: Option<String>,
pub rows: Vec<StandingsRow>,
}Expand description
One ranked table, optionally named (e.g. “Group A”) for group-based formats. A single-table league format has exactly one unnamed group.
Fields§
§name: Option<String>§rows: Vec<StandingsRow>Trait Implementations§
Source§impl Clone for StandingsGroup
impl Clone for StandingsGroup
Source§fn clone(&self) -> StandingsGroup
fn clone(&self) -> StandingsGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StandingsGroup
impl Debug for StandingsGroup
Source§impl<'de> Deserialize<'de> for StandingsGroup
impl<'de> Deserialize<'de> for StandingsGroup
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
Source§impl PartialEq for StandingsGroup
impl PartialEq for StandingsGroup
Source§impl Serialize for StandingsGroup
impl Serialize for StandingsGroup
impl StructuralPartialEq for StandingsGroup
Auto Trait Implementations§
impl Freeze for StandingsGroup
impl RefUnwindSafe for StandingsGroup
impl Send for StandingsGroup
impl Sync for StandingsGroup
impl Unpin for StandingsGroup
impl UnsafeUnpin for StandingsGroup
impl UnwindSafe for StandingsGroup
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