pub struct Standings {
pub competition_id: String,
pub groups: Vec<StandingsGroup>,
}Expand description
Standings for a competition, as one or more groups sharing the same row shape.
Fields§
§competition_id: String§groups: Vec<StandingsGroup>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Standings
impl<'de> Deserialize<'de> for Standings
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
impl StructuralPartialEq for Standings
Auto Trait Implementations§
impl Freeze for Standings
impl RefUnwindSafe for Standings
impl Send for Standings
impl Sync for Standings
impl Unpin for Standings
impl UnsafeUnpin for Standings
impl UnwindSafe for Standings
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