pub struct TeamEventStatus {
pub qual: Option<Box<TeamEventStatusRank>>,
pub alliance: Option<Box<TeamEventStatusAlliance>>,
pub playoff: Option<Box<TeamEventStatusPlayoff>>,
pub alliance_status_str: Option<String>,
pub playoff_status_str: Option<String>,
pub overall_status_str: Option<String>,
pub next_match_key: Option<String>,
pub last_match_key: Option<String>,
}
Fields§
§qual: Option<Box<TeamEventStatusRank>>
§alliance: Option<Box<TeamEventStatusAlliance>>
§playoff: Option<Box<TeamEventStatusPlayoff>>
§alliance_status_str: Option<String>
An HTML formatted string suitable for display to the user containing the team’s alliance pick status.
playoff_status_str: Option<String>
An HTML formatter string suitable for display to the user containing the team’s playoff status.
overall_status_str: Option<String>
An HTML formatted string suitable for display to the user containing the team’s overall status summary of the event.
next_match_key: Option<String>
TBA match key for the next match the team is scheduled to play in at this event, or null.
last_match_key: Option<String>
TBA match key for the last match the team played in at this event, or null.
Implementations§
Source§impl TeamEventStatus
impl TeamEventStatus
pub fn new() -> TeamEventStatus
Trait Implementations§
Source§impl Clone for TeamEventStatus
impl Clone for TeamEventStatus
Source§fn clone(&self) -> TeamEventStatus
fn clone(&self) -> TeamEventStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TeamEventStatus
impl Debug for TeamEventStatus
Source§impl Default for TeamEventStatus
impl Default for TeamEventStatus
Source§fn default() -> TeamEventStatus
fn default() -> TeamEventStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamEventStatus
impl<'de> Deserialize<'de> for TeamEventStatus
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 TeamEventStatus
impl PartialEq for TeamEventStatus
Source§impl Serialize for TeamEventStatus
impl Serialize for TeamEventStatus
impl StructuralPartialEq for TeamEventStatus
Auto Trait Implementations§
impl Freeze for TeamEventStatus
impl RefUnwindSafe for TeamEventStatus
impl Send for TeamEventStatus
impl Sync for TeamEventStatus
impl Unpin for TeamEventStatus
impl UnwindSafe for TeamEventStatus
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