pub struct PskModulation {
pub bits_per_symbol: usize,
pub sample_rate: f32,
pub bandwidth: f32,
pub symbol_map: Vec<Complex32>,
}Fields§
§bits_per_symbol: usize§sample_rate: f32§bandwidth: f32§symbol_map: Vec<Complex32>Implementations§
Trait Implementations§
Source§impl Demodulator for PskModulation
impl Demodulator for PskModulation
Source§impl Modulation for PskModulation
impl Modulation for PskModulation
fn sample_rate(&self) -> f32
fn bits_per_symbol(&self) -> usize
fn symbol_period(&self) -> f32
fn bitrate(&self) -> f32
fn samples_per_symbol(&self) -> usize
fn symbol_map(&self) -> &[Complex32] ⓘ
Auto Trait Implementations§
impl Freeze for PskModulation
impl RefUnwindSafe for PskModulation
impl Send for PskModulation
impl Sync for PskModulation
impl Unpin for PskModulation
impl UnwindSafe for PskModulation
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> 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