pub struct Dates {
pub date: Option<String>,
pub total_items: Option<u8>,
pub total_events: Option<u8>,
pub total_games: Option<u8>,
pub total_games_in_progress: Option<u8>,
pub games: Option<Vec<Game>>,
pub events: Option<Vec<Option<Value>>>,
}Fields§
§date: Option<String>§total_items: Option<u8>§total_events: Option<u8>§total_games: Option<u8>§total_games_in_progress: Option<u8>§games: Option<Vec<Game>>§events: Option<Vec<Option<Value>>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dates
impl<'de> Deserialize<'de> for Dates
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 Dates
impl RefUnwindSafe for Dates
impl Send for Dates
impl Sync for Dates
impl Unpin for Dates
impl UnsafeUnpin for Dates
impl UnwindSafe for Dates
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