pub struct PassbandConstellationDump {
pub pre_eq: Vec<Complex32>,
pub post_eq: Vec<Complex32>,
}Expand description
Equalizer input/output samples for a constellation plot.
Fields§
§pre_eq: Vec<Complex32>Raw FFT-bin samples on data carriers before equalization.
post_eq: Vec<Complex32>Equalized data-carrier samples after pilot/training correction.
Trait Implementations§
Source§impl Clone for PassbandConstellationDump
impl Clone for PassbandConstellationDump
Source§fn clone(&self) -> PassbandConstellationDump
fn clone(&self) -> PassbandConstellationDump
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 moreAuto Trait Implementations§
impl Freeze for PassbandConstellationDump
impl RefUnwindSafe for PassbandConstellationDump
impl Send for PassbandConstellationDump
impl Sync for PassbandConstellationDump
impl Unpin for PassbandConstellationDump
impl UnwindSafe for PassbandConstellationDump
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