pub struct MostPlayedMap {
pub map_name: String,
pub seconds_played: u64,
pub map: Option<StatsMap>,
}
Fields§
§map_name: String
§seconds_played: u64
§map: Option<StatsMap>
Trait Implementations§
Source§impl Clone for MostPlayedMap
impl Clone for MostPlayedMap
Source§fn clone(&self) -> MostPlayedMap
fn clone(&self) -> MostPlayedMap
Returns a copy 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 MostPlayedMap
impl Debug for MostPlayedMap
Source§impl Default for MostPlayedMap
impl Default for MostPlayedMap
Source§fn default() -> MostPlayedMap
fn default() -> MostPlayedMap
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MostPlayedMap
impl<'de> Deserialize<'de> for MostPlayedMap
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 MostPlayedMap
impl PartialEq for MostPlayedMap
Source§impl Serialize for MostPlayedMap
impl Serialize for MostPlayedMap
impl StructuralPartialEq for MostPlayedMap
Auto Trait Implementations§
impl Freeze for MostPlayedMap
impl RefUnwindSafe for MostPlayedMap
impl Send for MostPlayedMap
impl Sync for MostPlayedMap
impl Unpin for MostPlayedMap
impl UnwindSafe for MostPlayedMap
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