Enum procfs::FDTarget[][src]

pub enum FDTarget {
    Path(PathBuf),
    Socket(u32),
    Net(u32),
    Pipe(u32),
    AnonInode(String),
    MemFD(String),
    Other(Stringu32),
}

Variants

A file or device

A socket type, with an inode

A file descriptor that have no corresponding inode.

A memfd file descriptor with a name.

Some other file descriptor type, with an inode.

Trait Implementations

impl Debug for FDTarget
[src]

Formats the value using the given formatter. Read more

impl FromStr for FDTarget
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for FDTarget

impl Sync for FDTarget