pub struct CurrentSeasonMap {
pub week: u8,
pub map: String,
pub date: String,
pub na_date: Option<String>,
}Fields§
§week: u8§map: String§date: String§na_date: Option<String>Trait Implementations§
Source§impl Clone for CurrentSeasonMap
impl Clone for CurrentSeasonMap
Source§fn clone(&self) -> CurrentSeasonMap
fn clone(&self) -> CurrentSeasonMap
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 CurrentSeasonMap
impl Debug for CurrentSeasonMap
Source§impl<'de> Deserialize<'de> for CurrentSeasonMap
impl<'de> Deserialize<'de> for CurrentSeasonMap
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 CurrentSeasonMap
impl RefUnwindSafe for CurrentSeasonMap
impl Send for CurrentSeasonMap
impl Sync for CurrentSeasonMap
impl Unpin for CurrentSeasonMap
impl UnwindSafe for CurrentSeasonMap
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