pub enum HopStatus {
Responded {
addr: IpAddr,
rtt: Duration,
},
Timeout,
Unreachable {
code: u8,
},
Filtered,
}Expand description
Status of a protocol probe at a specific hop
Variants§
Responded
Received response from this hop
Timeout
Timeout - no response within time limit
Unreachable
Destination unreachable (various ICMP codes)
Filtered
Filtered - likely firewall blocking
Implementations§
Trait Implementations§
impl StructuralPartialEq for HopStatus
Auto Trait Implementations§
impl Freeze for HopStatus
impl RefUnwindSafe for HopStatus
impl Send for HopStatus
impl Sync for HopStatus
impl Unpin for HopStatus
impl UnsafeUnpin for HopStatus
impl UnwindSafe for HopStatus
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