pub struct StandingTable {
pub season: Option<i32>,
pub round: Option<i32>,
pub standings_lists: Vec<StandingsList>,
}Fields§
§season: Option<i32>§round: Option<i32>§standings_lists: Vec<StandingsList>Trait Implementations§
Source§impl Debug for StandingTable
impl Debug for StandingTable
Source§impl<'de> Deserialize<'de> for StandingTable
impl<'de> Deserialize<'de> for StandingTable
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 StandingTable
impl RefUnwindSafe for StandingTable
impl Send for StandingTable
impl Sync for StandingTable
impl Unpin for StandingTable
impl UnwindSafe for StandingTable
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