pub struct Psk8 {}
Expand description
8PSK modulation.
Trait Implementations§
Source§impl Modulation for Psk8
impl Modulation for Psk8
Source§const BITS_PER_SYMBOL: f64 = 3f64
const BITS_PER_SYMBOL: f64 = 3f64
Number of bits per symbol.
Source§type Modulator = Psk8Modulator
type Modulator = Psk8Modulator
Modulator type.
Source§type Demodulator = Psk8Demodulator
type Demodulator = Psk8Demodulator
Demodulator type.
impl Copy for Psk8
impl Eq for Psk8
impl StructuralPartialEq for Psk8
Auto Trait Implementations§
impl Freeze for Psk8
impl RefUnwindSafe for Psk8
impl Send for Psk8
impl Sync for Psk8
impl Unpin for Psk8
impl UnwindSafe for Psk8
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more