pub enum SupportChannel {
Lower,
Upper,
Primary,
Unknown(u8),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SupportChannel
impl Clone for SupportChannel
Source§fn clone(&self) -> SupportChannel
fn clone(&self) -> SupportChannel
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 SupportChannel
impl Debug for SupportChannel
Source§impl Default for SupportChannel
impl Default for SupportChannel
Source§fn default() -> SupportChannel
fn default() -> SupportChannel
Returns the “default value” for a type. Read more
Source§impl From<SupportChannel> for u128
impl From<SupportChannel> for u128
Source§fn from(value: SupportChannel) -> Self
fn from(value: SupportChannel) -> Self
Converts to this type from the input type.
Source§impl From<SupportChannel> for u16
impl From<SupportChannel> for u16
Source§fn from(value: SupportChannel) -> Self
fn from(value: SupportChannel) -> Self
Converts to this type from the input type.
Source§impl From<SupportChannel> for u32
impl From<SupportChannel> for u32
Source§fn from(value: SupportChannel) -> Self
fn from(value: SupportChannel) -> Self
Converts to this type from the input type.
Source§impl From<SupportChannel> for u64
impl From<SupportChannel> for u64
Source§fn from(value: SupportChannel) -> Self
fn from(value: SupportChannel) -> Self
Converts to this type from the input type.
Source§impl From<SupportChannel> for u8
impl From<SupportChannel> for u8
Source§fn from(value: SupportChannel) -> Self
fn from(value: SupportChannel) -> Self
Converts to this type from the input type.
Source§impl From<u128> for SupportChannel
impl From<u128> for SupportChannel
Source§impl From<u16> for SupportChannel
impl From<u16> for SupportChannel
Source§impl From<u32> for SupportChannel
impl From<u32> for SupportChannel
Source§impl From<u64> for SupportChannel
impl From<u64> for SupportChannel
Source§impl From<u8> for SupportChannel
impl From<u8> for SupportChannel
Source§impl Hash for SupportChannel
impl Hash for SupportChannel
Source§impl PartialEq for SupportChannel
impl PartialEq for SupportChannel
impl Copy for SupportChannel
impl Eq for SupportChannel
impl StructuralPartialEq for SupportChannel
Auto Trait Implementations§
impl Freeze for SupportChannel
impl RefUnwindSafe for SupportChannel
impl Send for SupportChannel
impl Sync for SupportChannel
impl Unpin for SupportChannel
impl UnwindSafe for SupportChannel
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