pub struct Fdinfo {
pub pid: String,
pub name: Option<String>,
pub link: HashSet<String>,
}Expand description
Represents information about a file descriptor
Fields§
§pid: StringProcess ID that owns this file descriptor
name: Option<String>Process name (if available)
link: HashSet<String>Set of links associated with this file descriptor
Trait Implementations§
impl StructuralPartialEq for Fdinfo
Auto Trait Implementations§
impl Freeze for Fdinfo
impl RefUnwindSafe for Fdinfo
impl Send for Fdinfo
impl Sync for Fdinfo
impl Unpin for Fdinfo
impl UnwindSafe for Fdinfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more