pub struct StandingsRow {
pub team: Team,
pub rank: u16,
pub played: u16,
pub won: u16,
pub drawn: u16,
pub lost: u16,
pub goals_for: u16,
pub goals_against: u16,
pub points: u16,
}Expand description
One row of a standings table.
Fields§
§team: Team§rank: u16§played: u16§won: u16§drawn: u16§lost: u16§goals_for: u16§goals_against: u16§points: u16Trait Implementations§
Source§impl Clone for StandingsRow
impl Clone for StandingsRow
Source§fn clone(&self) -> StandingsRow
fn clone(&self) -> StandingsRow
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 StandingsRow
impl Debug for StandingsRow
Source§impl<'de> Deserialize<'de> for StandingsRow
impl<'de> Deserialize<'de> for StandingsRow
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 StandingsRow
impl PartialEq for StandingsRow
Source§impl Serialize for StandingsRow
impl Serialize for StandingsRow
impl StructuralPartialEq for StandingsRow
Auto Trait Implementations§
impl Freeze for StandingsRow
impl RefUnwindSafe for StandingsRow
impl Send for StandingsRow
impl Sync for StandingsRow
impl Unpin for StandingsRow
impl UnsafeUnpin for StandingsRow
impl UnwindSafe for StandingsRow
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