pub struct TcpNetEntries(pub Vec<TcpNetEntry>);
Expand description
TCP socket entries.
Tuple Fields§
§0: Vec<TcpNetEntry>
Trait Implementations§
source§impl Clone for TcpNetEntries
impl Clone for TcpNetEntries
source§fn clone(&self) -> TcpNetEntries
fn clone(&self) -> TcpNetEntries
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TcpNetEntries
impl Debug for TcpNetEntries
source§impl<'de> Deserialize<'de> for TcpNetEntries
impl<'de> Deserialize<'de> for TcpNetEntries
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromBufReadSI for TcpNetEntries
impl FromBufReadSI for TcpNetEntries
fn from_buf_read<R: BufRead>(r: R, system_info: &SystemInfo) -> ProcResult<Self>
Auto Trait Implementations§
impl Freeze for TcpNetEntries
impl RefUnwindSafe for TcpNetEntries
impl Send for TcpNetEntries
impl Sync for TcpNetEntries
impl Unpin for TcpNetEntries
impl UnwindSafe for TcpNetEntries
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> FromReadSI for Twhere
T: FromBufReadSI,
impl<T> FromReadSI for Twhere
T: FromBufReadSI,
source§fn from_read<R>(
r: R,
system_info: &(dyn SystemInfoInterface + 'static),
) -> Result<T, ProcError>where
R: Read,
fn from_read<R>(
r: R,
system_info: &(dyn SystemInfoInterface + 'static),
) -> Result<T, ProcError>where
R: Read,
Parse the type from a Read and system info.
source§fn from_file<P: AsRef<Path>>(
path: P,
system_info: &SystemInfo,
) -> ProcResult<Self>
fn from_file<P: AsRef<Path>>( path: P, system_info: &SystemInfo, ) -> ProcResult<Self>
Parse the type from a file.