pub struct ApiTeam {
pub id: u16,
pub name: String,
pub abbreviation: String,
pub team_name: String,
pub division: Option<IdLink>,
pub sport: Option<IdLink>,
}Fields§
§id: u16§name: String§abbreviation: String§team_name: String§division: Option<IdLink>§sport: Option<IdLink>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApiTeam
impl<'de> Deserialize<'de> for ApiTeam
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 ApiTeam
impl RefUnwindSafe for ApiTeam
impl Send for ApiTeam
impl Sync for ApiTeam
impl Unpin for ApiTeam
impl UnsafeUnpin for ApiTeam
impl UnwindSafe for ApiTeam
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