pub enum ReceiverState {
Off,
OnButNotReceiving,
OnAndReceiving,
Unspecified(u16),
}Expand description
UID 179
Variants§
Trait Implementations§
Source§impl Clone for ReceiverState
impl Clone for ReceiverState
Source§fn clone(&self) -> ReceiverState
fn clone(&self) -> ReceiverState
Returns a duplicate 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 ReceiverState
impl Debug for ReceiverState
Source§impl Default for ReceiverState
impl Default for ReceiverState
Source§impl Display for ReceiverState
impl Display for ReceiverState
Source§impl From<ReceiverState> for u16
impl From<ReceiverState> for u16
Source§fn from(value: ReceiverState) -> Self
fn from(value: ReceiverState) -> Self
Converts to this type from the input type.
Source§impl From<u16> for ReceiverState
impl From<u16> for ReceiverState
Source§impl Hash for ReceiverState
impl Hash for ReceiverState
Source§impl PartialEq for ReceiverState
impl PartialEq for ReceiverState
impl Copy for ReceiverState
impl Eq for ReceiverState
impl StructuralPartialEq for ReceiverState
Auto Trait Implementations§
impl Freeze for ReceiverState
impl RefUnwindSafe for ReceiverState
impl Send for ReceiverState
impl Sync for ReceiverState
impl Unpin for ReceiverState
impl UnwindSafe for ReceiverState
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