pub struct PassbandIqChainDump {
pub downconverted_audio_rate: Vec<Complex32>,
pub baseband_rate: Vec<Complex32>,
pub fs_audio: f32,
pub fs_baseband: f32,
}Expand description
IQ-chain dump used to inspect the RX downconversion path.
Fields§
§downconverted_audio_rate: Vec<Complex32>Complex signal after IQ downconversion and low-pass filtering at the audio rate.
baseband_rate: Vec<Complex32>Complex signal after optional resampling to the baseband rate.
fs_audio: f32Audio sample rate in hertz.
fs_baseband: f32Decoder baseband sample rate in hertz.
Trait Implementations§
Source§impl Clone for PassbandIqChainDump
impl Clone for PassbandIqChainDump
Source§fn clone(&self) -> PassbandIqChainDump
fn clone(&self) -> PassbandIqChainDump
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 PassbandIqChainDump
impl RefUnwindSafe for PassbandIqChainDump
impl Send for PassbandIqChainDump
impl Sync for PassbandIqChainDump
impl Unpin for PassbandIqChainDump
impl UnwindSafe for PassbandIqChainDump
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