pub struct PeriodicityFrame {
pub period_ds: u64,
pub secs_to_spike_ds: u64,
pub confidence_x255: u8,
}Expand description
The receiver’s LEO handover-cadence detection (item 17): the detected period
and the time to the next predicted delay spike, both in deciseconds (0.1 s),
plus a confidence, so the sender pre-arms one cycle ahead. period_ds == 0
means no cadence detected.
Fields§
§period_ds: u64§secs_to_spike_ds: u64§confidence_x255: u8Trait Implementations§
Source§impl Clone for PeriodicityFrame
impl Clone for PeriodicityFrame
Source§fn clone(&self) -> PeriodicityFrame
fn clone(&self) -> PeriodicityFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PeriodicityFrame
Source§impl Debug for PeriodicityFrame
impl Debug for PeriodicityFrame
Source§impl Default for PeriodicityFrame
impl Default for PeriodicityFrame
Source§fn default() -> PeriodicityFrame
fn default() -> PeriodicityFrame
Returns the “default value” for a type. Read more
impl Eq for PeriodicityFrame
Source§impl PartialEq for PeriodicityFrame
impl PartialEq for PeriodicityFrame
impl StructuralPartialEq for PeriodicityFrame
Auto Trait Implementations§
impl Freeze for PeriodicityFrame
impl RefUnwindSafe for PeriodicityFrame
impl Send for PeriodicityFrame
impl Sync for PeriodicityFrame
impl Unpin for PeriodicityFrame
impl UnsafeUnpin for PeriodicityFrame
impl UnwindSafe for PeriodicityFrame
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