pub enum ControlStatus {
LocalControlOnly,
RemoteControlOnly,
EitherLocalOrRemoteControl,
}Expand description
The possible RDA system control statuses.
Variants§
Trait Implementations§
Source§impl Clone for ControlStatus
impl Clone for ControlStatus
Source§fn clone(&self) -> ControlStatus
fn clone(&self) -> ControlStatus
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 moreimpl Copy for ControlStatus
Source§impl Debug for ControlStatus
impl Debug for ControlStatus
impl Eq for ControlStatus
Source§impl Hash for ControlStatus
impl Hash for ControlStatus
Source§impl PartialEq for ControlStatus
impl PartialEq for ControlStatus
Source§fn eq(&self, other: &ControlStatus) -> bool
fn eq(&self, other: &ControlStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControlStatus
Auto Trait Implementations§
impl Freeze for ControlStatus
impl RefUnwindSafe for ControlStatus
impl Send for ControlStatus
impl Sync for ControlStatus
impl Unpin for ControlStatus
impl UnsafeUnpin for ControlStatus
impl UnwindSafe for ControlStatus
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