pub struct P1RxFrame {
pub samples: Vec<Vec<Complex<f64>>>,
pub status: P1Status,
}Expand description
Parsed IQ data from one Protocol 1 USB frame (1032 bytes).
Fields§
§samples: Vec<Vec<Complex<f64>>>IQ samples per DDC channel. samples[ddc_index] is a Vec<Complex<f64>>.
status: P1StatusProtocol status extracted from the response control bytes.
Auto Trait Implementations§
impl Freeze for P1RxFrame
impl RefUnwindSafe for P1RxFrame
impl Send for P1RxFrame
impl Sync for P1RxFrame
impl Unpin for P1RxFrame
impl UnsafeUnpin for P1RxFrame
impl UnwindSafe for P1RxFrame
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