Enum mpris_server::PlaylistsProperty
source · #[repr(u32)]pub enum PlaylistsProperty {
PlaylistCount = 1,
Orderings = 2,
ActivePlaylist = 4,
}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 BitAnd for PlaylistsProperty
impl BitAnd for PlaylistsProperty
source§impl BitFlag for PlaylistsProperty
impl BitFlag for PlaylistsProperty
source§impl BitOr for PlaylistsProperty
impl BitOr for PlaylistsProperty
source§impl BitXor for PlaylistsProperty
impl BitXor for PlaylistsProperty
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 Not for PlaylistsProperty
impl Not 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 ==.source§impl RawBitFlags for PlaylistsProperty
impl RawBitFlags for PlaylistsProperty
source§const EMPTY: Self::Numeric = {transmute(0x00000000): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
const EMPTY: Self::Numeric = {transmute(0x00000000): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
A value with no bits set.
source§const DEFAULT: Self::Numeric = {transmute(0x00000000): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
const DEFAULT: Self::Numeric = {transmute(0x00000000): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
The value used by the Default implementation. Equivalent to EMPTY, unless
customized.
source§const ALL_BITS: Self::Numeric = {transmute(0x00000007): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
const ALL_BITS: Self::Numeric = {transmute(0x00000007): <property::PlaylistsProperty as enumflags2::_internal::RawBitFlags>::Numeric}
A value with all flag bits set.
source§const BITFLAGS_TYPE_NAME: &'static str = "BitFlags<PlaylistsProperty>"
const BITFLAGS_TYPE_NAME: &'static str = "BitFlags<PlaylistsProperty>"
The name of the type for debug formatting purposes. Read more
impl Copy for PlaylistsProperty
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