Enum stm32wlxx_hal::subghz::FskPulseShape
source · pub enum FskPulseShape {
None = 0,
Bt03 = 8,
Bt05 = 9,
Bt07 = 10,
Bt10 = 11,
}
Expand description
Pulse shaping options for FskModParams
.
Variants§
None = 0
No filtering applied.
Bt03 = 8
Gaussian BT 0.3
Bt05 = 9
Gaussian BT 0.5
Bt07 = 10
Gaussian BT 0.7
Bt10 = 11
Gaussian BT 1.0
Trait Implementations§
source§impl Clone for FskPulseShape
impl Clone for FskPulseShape
source§fn clone(&self) -> FskPulseShape
fn clone(&self) -> FskPulseShape
Returns a copy 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 FskPulseShape
impl Debug for FskPulseShape
source§impl Ord for FskPulseShape
impl Ord for FskPulseShape
source§fn cmp(&self, other: &FskPulseShape) -> Ordering
fn cmp(&self, other: &FskPulseShape) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for FskPulseShape
impl PartialEq for FskPulseShape
source§fn eq(&self, other: &FskPulseShape) -> bool
fn eq(&self, other: &FskPulseShape) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FskPulseShape
impl PartialOrd for FskPulseShape
source§fn partial_cmp(&self, other: &FskPulseShape) -> Option<Ordering>
fn partial_cmp(&self, other: &FskPulseShape) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for FskPulseShape
impl Eq for FskPulseShape
impl StructuralEq for FskPulseShape
impl StructuralPartialEq for FskPulseShape
Auto Trait Implementations§
impl RefUnwindSafe for FskPulseShape
impl Send for FskPulseShape
impl Sync for FskPulseShape
impl Unpin for FskPulseShape
impl UnwindSafe for FskPulseShape
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