pub struct PassbandSyncDump {
pub coarse_sync_off: usize,
pub refined_sync_off: usize,
pub metrics: Vec<f32>,
}Expand description
Timing metric dump around the repeated-half synchronizer.
Fields§
§coarse_sync_off: usizeCoarse Schmidl-Cox timing estimate.
refined_sync_off: usizeRefined timing estimate after the local refinement step.
metrics: Vec<f32>Schmidl-Cox metric trace used for visualization/debugging.
Trait Implementations§
Source§impl Clone for PassbandSyncDump
impl Clone for PassbandSyncDump
Source§fn clone(&self) -> PassbandSyncDump
fn clone(&self) -> PassbandSyncDump
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 PassbandSyncDump
impl RefUnwindSafe for PassbandSyncDump
impl Send for PassbandSyncDump
impl Sync for PassbandSyncDump
impl Unpin for PassbandSyncDump
impl UnwindSafe for PassbandSyncDump
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