pub enum SubscribeTopic {
DMXConfiguration,
}Expand description
Defines the available data streams or engine states that a client can subscribe to.
Variants§
DMXConfiguration
The current DMX channel allocation and patch state.
Trait Implementations§
Source§impl Clone for SubscribeTopic
impl Clone for SubscribeTopic
Source§fn clone(&self) -> SubscribeTopic
fn clone(&self) -> SubscribeTopic
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SubscribeTopic
impl Debug for SubscribeTopic
Source§impl<'de> Deserialize<'de> for SubscribeTopic
impl<'de> Deserialize<'de> for SubscribeTopic
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 Display for SubscribeTopic
impl Display for SubscribeTopic
Source§impl PartialEq for SubscribeTopic
impl PartialEq for SubscribeTopic
Source§fn eq(&self, other: &SubscribeTopic) -> bool
fn eq(&self, other: &SubscribeTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SubscribeTopic
impl Serialize for SubscribeTopic
impl StructuralPartialEq for SubscribeTopic
Auto Trait Implementations§
impl Freeze for SubscribeTopic
impl RefUnwindSafe for SubscribeTopic
impl Send for SubscribeTopic
impl Sync for SubscribeTopic
impl Unpin for SubscribeTopic
impl UnsafeUnpin for SubscribeTopic
impl UnwindSafe for SubscribeTopic
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