pub struct Psk8Modulator {}
Expand description
8PSK modulator.
8PSK modulator using the DVB-S2 Gray-coded constellation. The modulator can only work with codewords whose length is a multiple of 3 bits.
Implementations§
Source§impl Psk8Modulator
impl Psk8Modulator
Sourcepub fn new() -> Psk8Modulator
pub fn new() -> Psk8Modulator
Creates a new 8PSK modulator.
Trait Implementations§
Source§impl Clone for Psk8Modulator
impl Clone for Psk8Modulator
Source§fn clone(&self) -> Psk8Modulator
fn clone(&self) -> Psk8Modulator
Returns a duplicate 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 Psk8Modulator
impl Debug for Psk8Modulator
Source§impl Default for Psk8Modulator
impl Default for Psk8Modulator
Source§fn default() -> Psk8Modulator
fn default() -> Psk8Modulator
Returns the “default value” for a type. Read more
Source§impl Modulator for Psk8Modulator
impl Modulator for Psk8Modulator
Auto Trait Implementations§
impl Freeze for Psk8Modulator
impl RefUnwindSafe for Psk8Modulator
impl Send for Psk8Modulator
impl Sync for Psk8Modulator
impl Unpin for Psk8Modulator
impl UnwindSafe for Psk8Modulator
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