pub enum RemoteControlStatusOffState {
Off,
}Expand description
Remote control state tag: not connected.
Variants§
Off
Trait Implementations§
Source§impl Clone for RemoteControlStatusOffState
impl Clone for RemoteControlStatusOffState
Source§fn clone(&self) -> RemoteControlStatusOffState
fn clone(&self) -> RemoteControlStatusOffState
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 RemoteControlStatusOffState
impl Debug for RemoteControlStatusOffState
Source§impl Default for RemoteControlStatusOffState
impl Default for RemoteControlStatusOffState
Source§fn default() -> RemoteControlStatusOffState
fn default() -> RemoteControlStatusOffState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteControlStatusOffState
impl<'de> Deserialize<'de> for RemoteControlStatusOffState
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
impl Eq for RemoteControlStatusOffState
Source§impl PartialEq for RemoteControlStatusOffState
impl PartialEq for RemoteControlStatusOffState
Source§fn eq(&self, other: &RemoteControlStatusOffState) -> bool
fn eq(&self, other: &RemoteControlStatusOffState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoteControlStatusOffState
Auto Trait Implementations§
impl Freeze for RemoteControlStatusOffState
impl RefUnwindSafe for RemoteControlStatusOffState
impl Send for RemoteControlStatusOffState
impl Sync for RemoteControlStatusOffState
impl Unpin for RemoteControlStatusOffState
impl UnsafeUnpin for RemoteControlStatusOffState
impl UnwindSafe for RemoteControlStatusOffState
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