pub struct TraceFrame {
pub hop_ttl: u8,
pub probe_id: u8,
}Expand description
A mini-traceroute marker: a control packet emitted at a reduced IP TTL so an intermediate router replies with ICMP TimeExceeded, exposing per-hop RTT without a separate probe flow.
Fields§
§hop_ttl: u8§probe_id: u8Trait Implementations§
Source§impl Clone for TraceFrame
impl Clone for TraceFrame
Source§fn clone(&self) -> TraceFrame
fn clone(&self) -> TraceFrame
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 TraceFrame
Source§impl Debug for TraceFrame
impl Debug for TraceFrame
Source§impl Default for TraceFrame
impl Default for TraceFrame
Source§fn default() -> TraceFrame
fn default() -> TraceFrame
Returns the “default value” for a type. Read more
impl Eq for TraceFrame
Source§impl PartialEq for TraceFrame
impl PartialEq for TraceFrame
impl StructuralPartialEq for TraceFrame
Auto Trait Implementations§
impl Freeze for TraceFrame
impl RefUnwindSafe for TraceFrame
impl Send for TraceFrame
impl Sync for TraceFrame
impl Unpin for TraceFrame
impl UnsafeUnpin for TraceFrame
impl UnwindSafe for TraceFrame
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