pub struct Team {
pub id: u32,
pub name: String,
pub logo: String,
pub alt_logo: Option<String>,
}Expand description
Basic information about a team.
Fields§
§id: u32HLTV-associated ID (found in the URL of team page).
name: StringName of the team.
logo: StringLink to the team logo
alt_logo: Option<String>Link to the alternative logo for dark backgrounds. Not all Teams have or need an alternative logo.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Team
impl RefUnwindSafe for Team
impl Send for Team
impl Sync for Team
impl Unpin for Team
impl UnwindSafe for Team
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