Struct procfs::net::UnixNetEntry [−][src]
An entry in the Unix socket tabale
Fields
ref_count: u32
The number of users of the socket
socket_type: u16
The socket type.
Possible values are SOCK_STREAM
, SOCK_DGRAM
, or SOCK_SEQPACKET
. These constants can
be found in the libc crate.
state: UnixState
The state of the socket
inode: u32
The inode number of the socket
path: Option<PathBuf>
The bound pathname (if any) of the socket.
Sockets in the abstract namespace are included, and are shown with a path that commences with the ‘@’ character.
Trait Implementations
impl Debug for UnixNetEntry
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for UnixNetEntry
impl Send for UnixNetEntry
impl Sync for UnixNetEntry
impl Unpin for UnixNetEntry
impl UnwindSafe for UnixNetEntry
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,