pub struct BoxscoreTeam {
pub id: i64,
pub common_name: LocalizedString,
pub abbrev: String,
pub score: i32,
pub sog: i32,
pub logo: String,
pub dark_logo: String,
pub place_name: LocalizedString,
pub place_name_with_preposition: LocalizedString,
}Expand description
Team information in boxscore
Fields§
§id: i64§common_name: LocalizedString§abbrev: String§score: i32§sog: i32§logo: String§dark_logo: String§place_name: LocalizedString§place_name_with_preposition: LocalizedStringTrait Implementations§
Source§impl Clone for BoxscoreTeam
impl Clone for BoxscoreTeam
Source§fn clone(&self) -> BoxscoreTeam
fn clone(&self) -> BoxscoreTeam
Returns a duplicate of the value. Read more
1.0.0 · 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 BoxscoreTeam
impl Debug for BoxscoreTeam
Source§impl<'de> Deserialize<'de> for BoxscoreTeam
impl<'de> Deserialize<'de> for BoxscoreTeam
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 BoxscoreTeam
impl PartialEq for BoxscoreTeam
Source§impl Serialize for BoxscoreTeam
impl Serialize for BoxscoreTeam
impl StructuralPartialEq for BoxscoreTeam
Auto Trait Implementations§
impl Freeze for BoxscoreTeam
impl RefUnwindSafe for BoxscoreTeam
impl Send for BoxscoreTeam
impl Sync for BoxscoreTeam
impl Unpin for BoxscoreTeam
impl UnwindSafe for BoxscoreTeam
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