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