#[repr(C)]pub struct FdStat {
pub file_type: FileType,
pub flags: FdFlags,
pub rights_base: Rights,
pub rights_inheriting: Rights,
}Fields§
§file_type: FileType§flags: FdFlags§rights_base: RightsRights that apply to this file descriptor.
rights_inheriting: RightsMaximum set of rights that may be installed on new file descriptors that are created through this file descriptor.
Trait Implementations§
impl Copy for FdStat
impl Eq for FdStat
impl StructuralPartialEq for FdStat
Auto Trait Implementations§
impl Freeze for FdStat
impl RefUnwindSafe for FdStat
impl Send for FdStat
impl Sync for FdStat
impl Unpin for FdStat
impl UnwindSafe for FdStat
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