#[repr(C)]pub(crate) struct StreamChannel {
pub(crate) demod: Complex<i32>,
pub(crate) phase: [u32; 2],
pub(crate) delta_ftw: Wrapping<i32>,
pub(crate) aux_adc: u16,
pub(crate) mod_amp: u16,
}Fields§
§demod: Complex<i32>Demodulated signal.
phase: [u32; 2]Current raw phase including wraps and pll correction.
delta_ftw: Wrapping<i32>Current frequency tuning word added to the configured modulation
offset mod_freq.
aux_adc: u16AUX ADC sample
mod_amp: u16Trait Implementations§
Source§impl Clone for StreamChannel
impl Clone for StreamChannel
Source§fn clone(&self) -> StreamChannel
fn clone(&self) -> StreamChannel
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 StreamChannel
impl Debug for StreamChannel
Source§impl Default for StreamChannel
impl Default for StreamChannel
Source§fn default() -> StreamChannel
fn default() -> StreamChannel
Returns the “default value” for a type. Read more
impl Copy for StreamChannel
impl Pod for StreamChannel
Auto Trait Implementations§
impl Freeze for StreamChannel
impl RefUnwindSafe for StreamChannel
impl Send for StreamChannel
impl Sync for StreamChannel
impl Unpin for StreamChannel
impl UnwindSafe for StreamChannel
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
§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, M> ForwardCompat<T, M> for T
impl<T, M> ForwardCompat<T, M> for T
§impl<T> ReverseCompat<T> for T
impl<T> ReverseCompat<T> for T
§fn reverse(self) -> Reverse<T>
fn reverse(self) -> Reverse<T>
Create an e-h-c wrapper around and e-h object Available methods depend on the wrapped type
§fn reverse_cell(self) -> Reverse<RefCell<T>>
fn reverse_cell(self) -> Reverse<RefCell<T>>
Create an e-h-c reverse compatibility wrapper using a ref-cell for interior mutability (required for InputPin types)