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