pub struct RxFrame {
pub packet: FramePacket,
pub diagnostics: OfdmRxFrame,
}Expand description
A successfully received frame plus its per-frame RX diagnostics.
Fields§
§packet: FramePacket§diagnostics: OfdmRxFrameAcquisition/quality diagnostics: cfo_hz and timing_offset_samples
are populated by the streaming receiver; evm_db/channel_mse are
left None here (measured by the per-symbol pipeline, not the frame
layer).
Trait Implementations§
impl StructuralPartialEq for RxFrame
Auto Trait Implementations§
impl Freeze for RxFrame
impl RefUnwindSafe for RxFrame
impl Send for RxFrame
impl Sync for RxFrame
impl Unpin for RxFrame
impl UnsafeUnpin for RxFrame
impl UnwindSafe for RxFrame
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