pub struct Bpsk {}
Expand description
BPSK modulation.
Trait Implementations§
Source§impl Modulation for Bpsk
impl Modulation for Bpsk
Source§const BITS_PER_SYMBOL: f64 = 1f64
const BITS_PER_SYMBOL: f64 = 1f64
Number of bits per symbol.
Source§type Modulator = BpskModulator
type Modulator = BpskModulator
Modulator type.
Source§type Demodulator = BpskDemodulator
type Demodulator = BpskDemodulator
Demodulator type.
impl Copy for Bpsk
impl Eq for Bpsk
impl StructuralPartialEq for Bpsk
Auto Trait Implementations§
impl Freeze for Bpsk
impl RefUnwindSafe for Bpsk
impl Send for Bpsk
impl Sync for Bpsk
impl Unpin for Bpsk
impl UnwindSafe for Bpsk
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