pub struct TeamEventStatusPlayoff {
pub level: Option<Level>,
pub current_level_record: Option<Box<WltRecord>>,
pub record: Option<Box<WltRecord>>,
pub status: Option<Status>,
pub playoff_average: Option<i32>,
}Expand description
TeamEventStatusPlayoff : Playoff status for this team, may be null if the team did not make playoffs, or playoffs have not begun.
Fields§
§level: Option<Level>The highest playoff level the team reached.
current_level_record: Option<Box<WltRecord>>§record: Option<Box<WltRecord>>§status: Option<Status>Current competition status for the playoffs.
playoff_average: Option<i32>The average match score during playoffs. Year specific. May be null if not relevant for a given year.
Implementations§
Source§impl TeamEventStatusPlayoff
impl TeamEventStatusPlayoff
Sourcepub fn new() -> TeamEventStatusPlayoff
pub fn new() -> TeamEventStatusPlayoff
Playoff status for this team, may be null if the team did not make playoffs, or playoffs have not begun.
Trait Implementations§
Source§impl Clone for TeamEventStatusPlayoff
impl Clone for TeamEventStatusPlayoff
Source§fn clone(&self) -> TeamEventStatusPlayoff
fn clone(&self) -> TeamEventStatusPlayoff
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 TeamEventStatusPlayoff
impl Debug for TeamEventStatusPlayoff
Source§impl Default for TeamEventStatusPlayoff
impl Default for TeamEventStatusPlayoff
Source§fn default() -> TeamEventStatusPlayoff
fn default() -> TeamEventStatusPlayoff
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamEventStatusPlayoff
impl<'de> Deserialize<'de> for TeamEventStatusPlayoff
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 TeamEventStatusPlayoff
impl PartialEq for TeamEventStatusPlayoff
Source§impl Serialize for TeamEventStatusPlayoff
impl Serialize for TeamEventStatusPlayoff
impl StructuralPartialEq for TeamEventStatusPlayoff
Auto Trait Implementations§
impl Freeze for TeamEventStatusPlayoff
impl RefUnwindSafe for TeamEventStatusPlayoff
impl Send for TeamEventStatusPlayoff
impl Sync for TeamEventStatusPlayoff
impl Unpin for TeamEventStatusPlayoff
impl UnwindSafe for TeamEventStatusPlayoff
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