pub struct HostEntry {Show 14 fields
pub display: String,
pub addr: IpAddr,
pub is_ipv6: bool,
pub num_sent: u32,
pub num_recv: u32,
pub max_reply: Option<Duration>,
pub min_reply: Option<Duration>,
pub total_time: Duration,
pub resp_times: Vec<Option<Duration>>,
pub last_send: Option<Instant>,
pub next_send: Instant,
pub retries_left: u32,
pub current_ping_index: u32,
pub done: bool,
}Fields§
§display: String§addr: IpAddr§is_ipv6: bool§num_sent: u32§num_recv: u32§max_reply: Option<Duration>§min_reply: Option<Duration>§total_time: Duration§resp_times: Vec<Option<Duration>>§last_send: Option<Instant>§next_send: Instant§retries_left: u32§current_ping_index: u32§done: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HostEntry
impl RefUnwindSafe for HostEntry
impl Send for HostEntry
impl Sync for HostEntry
impl Unpin for HostEntry
impl UnsafeUnpin for HostEntry
impl UnwindSafe for HostEntry
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