pub struct League {
pub id: i32,
pub name: Option<String>,
pub shortcut: Option<String>,
pub season: Option<String>,
pub sport: Sport,
}
Expand description
A data structure
Fields§
§id: i32
The identifier of this league data
name: Option<String>
The name of the league
shortcut: Option<String>
The shortcut value for the league. This is used for some other API calls.
season: Option<String>
The season for this league
sport: Sport
The sport to which this league belongs
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for League
impl<'de> Deserialize<'de> for League
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 League
impl RefUnwindSafe for League
impl Send for League
impl Sync for League
impl Unpin for League
impl UnwindSafe for League
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