Enum procfs::FDTarget [−][src]
pub enum FDTarget { Path(PathBuf), Socket(u32), Net(u32), Pipe(u32), AnonInode(String), MemFD(String), Other(String, u32), }
Variants
Path(PathBuf)
A file or device
Socket(u32)
A socket type, with an inode
Net(u32)
Pipe(u32)
AnonInode(String)
A file descriptor that have no corresponding inode.
MemFD(String)
A memfd file descriptor with a name.
Other(String, u32)
Some other file descriptor type, with an inode.
Trait Implementations
impl Debug for FDTarget
[src]
impl Debug for FDTarget
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl FromStr for FDTarget
[src]
impl FromStr for FDTarget