Enum mpris_server::PlaylistsProperty
source · pub enum PlaylistsProperty {
PlaylistCount(u32),
Orderings(Vec<PlaylistOrdering>),
ActivePlaylist(Option<Playlist>),
}Expand description
Used for emitting PropertiesChanged signals on
Server::playlists_properties_changed and
LocalServer::playlists_properties_changed, if T implements
PlaylistsInterface or LocalPlaylistsInterface.
Variants§
Trait Implementations§
source§impl Clone for PlaylistsProperty
impl Clone for PlaylistsProperty
source§fn clone(&self) -> PlaylistsProperty
fn clone(&self) -> PlaylistsProperty
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 PlaylistsProperty
impl Debug for PlaylistsProperty
source§impl PartialEq for PlaylistsProperty
impl PartialEq for PlaylistsProperty
source§fn eq(&self, other: &PlaylistsProperty) -> bool
fn eq(&self, other: &PlaylistsProperty) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for PlaylistsProperty
impl StructuralEq for PlaylistsProperty
impl StructuralPartialEq for PlaylistsProperty
Auto Trait Implementations§
impl RefUnwindSafe for PlaylistsProperty
impl Send for PlaylistsProperty
impl Sync for PlaylistsProperty
impl Unpin for PlaylistsProperty
impl UnwindSafe for PlaylistsProperty
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