pub struct TimingFrame {
pub send_ts: u64,
pub echo_ts: u64,
}Expand description
Sender clock beat. echo_ts reflects the peer’s last send_ts back, so
either end can compute RTT; send_ts alone drives the OWD-trend slope.
Fields§
§send_ts: u64§echo_ts: u64Trait Implementations§
Source§impl Clone for TimingFrame
impl Clone for TimingFrame
Source§fn clone(&self) -> TimingFrame
fn clone(&self) -> TimingFrame
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 TimingFrame
Source§impl Debug for TimingFrame
impl Debug for TimingFrame
Source§impl Default for TimingFrame
impl Default for TimingFrame
Source§fn default() -> TimingFrame
fn default() -> TimingFrame
Returns the “default value” for a type. Read more
impl Eq for TimingFrame
Source§impl PartialEq for TimingFrame
impl PartialEq for TimingFrame
impl StructuralPartialEq for TimingFrame
Auto Trait Implementations§
impl Freeze for TimingFrame
impl RefUnwindSafe for TimingFrame
impl Send for TimingFrame
impl Sync for TimingFrame
impl Unpin for TimingFrame
impl UnsafeUnpin for TimingFrame
impl UnwindSafe for TimingFrame
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