Struct procfs::net::UdpNetEntry
source · pub struct UdpNetEntry {
pub local_address: SocketAddr,
pub remote_address: SocketAddr,
pub state: UdpState,
pub rx_queue: u32,
pub tx_queue: u32,
pub inode: u64,
}Expand description
An entry in the UDP socket table
Fields§
§local_address: SocketAddr§remote_address: SocketAddr§state: UdpState§rx_queue: u32§tx_queue: u32§inode: u64Trait Implementations§
source§impl Clone for UdpNetEntry
impl Clone for UdpNetEntry
source§fn clone(&self) -> UdpNetEntry
fn clone(&self) -> UdpNetEntry
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 more