pub struct Population {
pub players: i32,
pub updated_at: i64,
}
Expand description
Population of a Playlist
.
Fields§
§players: i32
Number of players currently playing the playlist.
updated_at: i64
This is a unix timestamp.
Trait Implementations§
Source§impl Debug for Population
impl Debug for Population
Source§impl<'de> Deserialize<'de> for Population
impl<'de> Deserialize<'de> for Population
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 Population
impl RefUnwindSafe for Population
impl Send for Population
impl Sync for Population
impl Unpin for Population
impl UnwindSafe for Population
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