pub struct UdpNetEntries(pub Vec<UdpNetEntry>);Expand description
UDP socket entries.
Tuple Fields§
§0: Vec<UdpNetEntry>Trait Implementations§
Source§impl Clone for UdpNetEntries
impl Clone for UdpNetEntries
Source§fn clone(&self) -> UdpNetEntries
fn clone(&self) -> UdpNetEntries
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 moreSource§impl Debug for UdpNetEntries
impl Debug for UdpNetEntries
Source§impl<'de> Deserialize<'de> for UdpNetEntries
impl<'de> Deserialize<'de> for UdpNetEntries
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 UdpNetEntries
impl FromBufReadSI for UdpNetEntries
fn from_buf_read<R: BufRead>(r: R, system_info: &SystemInfo) -> ProcResult<Self>
Auto Trait Implementations§
impl Freeze for UdpNetEntries
impl RefUnwindSafe for UdpNetEntries
impl Send for UdpNetEntries
impl Sync for UdpNetEntries
impl Unpin for UdpNetEntries
impl UnsafeUnpin for UdpNetEntries
impl UnwindSafe for UdpNetEntries
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§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.