pub struct SyncWindow {
pub max_delta_ns: u64,
pub max_uncertainty_ns: u64,
}Expand description
Inclusive time-window options for approximate sync.
Fields§
§max_delta_ns: u64Maximum absolute time delta accepted when pairing topics.
max_uncertainty_ns: u64Maximum sync uncertainty accepted on each stamp.
Trait Implementations§
Source§impl Clone for SyncWindow
impl Clone for SyncWindow
Source§fn clone(&self) -> SyncWindow
fn clone(&self) -> SyncWindow
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 moreSource§impl Debug for SyncWindow
impl Debug for SyncWindow
Source§impl Default for SyncWindow
impl Default for SyncWindow
Source§impl Hash for SyncWindow
impl Hash for SyncWindow
Source§impl PartialEq for SyncWindow
impl PartialEq for SyncWindow
Source§fn eq(&self, other: &SyncWindow) -> bool
fn eq(&self, other: &SyncWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SyncWindow
impl Eq for SyncWindow
impl StructuralPartialEq for SyncWindow
Auto Trait Implementations§
impl Freeze for SyncWindow
impl RefUnwindSafe for SyncWindow
impl Send for SyncWindow
impl Sync for SyncWindow
impl Unpin for SyncWindow
impl UnsafeUnpin for SyncWindow
impl UnwindSafe for SyncWindow
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