pub enum Modulation {
NotDefined,
Qam16,
Qam32,
Qam64,
Qam128,
Qam256,
Reserved(u8),
}Expand description
Modulation scheme.
Variants§
NotDefined
Not defined.
Qam16
16-QAM.
Qam32
32-QAM.
Qam64
64-QAM.
Qam128
128-QAM.
Qam256
256-QAM.
Reserved(u8)
Reserved / future use.
Trait Implementations§
Source§impl Clone for Modulation
impl Clone for Modulation
Source§fn clone(&self) -> Modulation
fn clone(&self) -> Modulation
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 Modulation
Source§impl Debug for Modulation
impl Debug for Modulation
impl Eq for Modulation
Source§impl PartialEq for Modulation
impl PartialEq for Modulation
Source§fn eq(&self, other: &Modulation) -> bool
fn eq(&self, other: &Modulation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Modulation
impl Serialize for Modulation
impl StructuralPartialEq for Modulation
Auto Trait Implementations§
impl Freeze for Modulation
impl RefUnwindSafe for Modulation
impl Send for Modulation
impl Sync for Modulation
impl Unpin for Modulation
impl UnsafeUnpin for Modulation
impl UnwindSafe for Modulation
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