tcp_info

Struct tcp_info 

Source
#[repr(C)]
pub struct tcp_info {
Show 40 fields pub tcpi_state: u8, pub __tcpi_ca_state: u8, pub __tcpi_retransmits: u8, pub __tcpi_probes: u8, pub __tcpi_backoff: u8, pub tcpi_options: u8, pub tcp_snd_wscale: u8, pub tcp_rcv_wscale: u8, pub tcpi_rto: u32, pub __tcpi_ato: u32, pub tcpi_snd_mss: u32, pub tcpi_rcv_mss: u32, pub __tcpi_unacked: u32, pub __tcpi_sacked: u32, pub __tcpi_lost: u32, pub __tcpi_retrans: u32, pub __tcpi_fackets: u32, pub __tcpi_last_data_sent: u32, pub __tcpi_last_ack_sent: u32, pub tcpi_last_data_recv: u32, pub __tcpi_last_ack_recv: u32, pub __tcpi_pmtu: u32, pub __tcpi_rcv_ssthresh: u32, pub tcpi_rtt: u32, pub tcpi_rttvar: u32, pub tcpi_snd_ssthresh: u32, pub tcpi_snd_cwnd: u32, pub __tcpi_advmss: u32, pub __tcpi_reordering: u32, pub __tcpi_rcv_rtt: u32, pub tcpi_rcv_space: u32, pub tcpi_snd_wnd: u32, pub tcpi_snd_bwnd: u32, pub tcpi_snd_nxt: u32, pub tcpi_rcv_nxt: u32, pub tcpi_toe_tid: u32, pub tcpi_snd_rexmitpack: u32, pub tcpi_rcv_ooopack: u32, pub tcpi_snd_zerowin: u32, pub __tcpi_pad: [u32; 26],
}

Fields§

§tcpi_state: u8§__tcpi_ca_state: u8§__tcpi_retransmits: u8§__tcpi_probes: u8§__tcpi_backoff: u8§tcpi_options: u8§tcp_snd_wscale: u8§tcp_rcv_wscale: u8§tcpi_rto: u32§__tcpi_ato: u32§tcpi_snd_mss: u32§tcpi_rcv_mss: u32§__tcpi_unacked: u32§__tcpi_sacked: u32§__tcpi_lost: u32§__tcpi_retrans: u32§__tcpi_fackets: u32§__tcpi_last_data_sent: u32§__tcpi_last_ack_sent: u32§tcpi_last_data_recv: u32§__tcpi_last_ack_recv: u32§__tcpi_pmtu: u32§__tcpi_rcv_ssthresh: u32§tcpi_rtt: u32§tcpi_rttvar: u32§tcpi_snd_ssthresh: u32§tcpi_snd_cwnd: u32§__tcpi_advmss: u32§__tcpi_reordering: u32§__tcpi_rcv_rtt: u32§tcpi_rcv_space: u32§tcpi_snd_wnd: u32§tcpi_snd_bwnd: u32§tcpi_snd_nxt: u32§tcpi_rcv_nxt: u32§tcpi_toe_tid: u32§tcpi_snd_rexmitpack: u32§tcpi_rcv_ooopack: u32§tcpi_snd_zerowin: u32§__tcpi_pad: [u32; 26]

Trait Implementations§

Source§

impl Clone for tcp_info

Source§

fn clone(&self) -> tcp_info

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for tcp_info

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for tcp_info

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.