Struct procfs::net::UnixNetEntry[][src]

pub struct UnixNetEntry {
    pub ref_count: u32,
    pub socket_type: u16,
    pub state: UnixState,
    pub inode: u32,
    pub path: Option<PathBuf>,
}

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.