pub struct Event {Show 25 fields
pub id: i64,
pub name: String,
pub deadline_time: String,
pub release_time: Value,
pub average_entry_score: i64,
pub finished: bool,
pub data_checked: bool,
pub highest_scoring_entry: Option<i64>,
pub deadline_time_epoch: i64,
pub deadline_time_game_offset: i64,
pub highest_score: Option<i64>,
pub is_previous: bool,
pub is_current: bool,
pub is_next: bool,
pub cup_leagues_created: bool,
pub h2h_ko_matches_created: bool,
pub ranked_count: i64,
pub chip_plays: Vec<ChipPlay>,
pub most_selected: Option<i64>,
pub most_transferred_in: Option<i64>,
pub top_element: Option<i64>,
pub top_element_info: Option<TopElementInfo>,
pub transfers_made: i64,
pub most_captained: Option<i64>,
pub most_vice_captained: Option<i64>,
}Fields§
§id: i64§name: String§deadline_time: String§release_time: Value§average_entry_score: i64§finished: bool§data_checked: bool§highest_scoring_entry: Option<i64>§deadline_time_epoch: i64§deadline_time_game_offset: i64§highest_score: Option<i64>§is_previous: bool§is_current: bool§is_next: bool§cup_leagues_created: bool§h2h_ko_matches_created: bool§ranked_count: i64§chip_plays: Vec<ChipPlay>§most_selected: Option<i64>§most_transferred_in: Option<i64>§top_element: Option<i64>§top_element_info: Option<TopElementInfo>§transfers_made: i64§most_captained: Option<i64>§most_vice_captained: Option<i64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Event
impl<'de> Deserialize<'de> for Event
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
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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