pub struct SeriesData {Show 14 fields
pub id: String,
pub slug: String,
pub title: String,
pub description: Option<String>,
pub image: Option<String>,
pub icon: Option<String>,
pub active: bool,
pub closed: bool,
pub archived: bool,
pub tags: Vec<String>,
pub volume: Option<f64>,
pub liquidity: Option<f64>,
pub events: Vec<Event>,
pub competitive: Option<String>,
}Expand description
Series data (tournament/season grouping)
Fields§
§id: String§slug: String§title: String§description: Option<String>§image: Option<String>§icon: Option<String>§active: bool§closed: bool§archived: bool§volume: Option<f64>§liquidity: Option<f64>§events: Vec<Event>§competitive: Option<String>Trait Implementations§
Source§impl Clone for SeriesData
impl Clone for SeriesData
Source§fn clone(&self) -> SeriesData
fn clone(&self) -> SeriesData
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 SeriesData
impl Debug for SeriesData
Source§impl<'de> Deserialize<'de> for SeriesData
impl<'de> Deserialize<'de> for SeriesData
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 SeriesData
impl RefUnwindSafe for SeriesData
impl Send for SeriesData
impl Sync for SeriesData
impl Unpin for SeriesData
impl UnwindSafe for SeriesData
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