#[repr(C)]pub struct fdstat {
pub fs_filetype: filetype,
pub fs_flags: fdflags,
pub fs_rights_base: rights,
pub fs_rights_inheriting: rights,
}Expand description
File descriptor attributes.
Fields§
§fs_filetype: filetypeFile type.
fs_flags: fdflagsFile descriptor flags.
fs_rights_base: rightsRights that apply to this file descriptor.
fs_rights_inheriting: rightsMaximum set of rights that can be installed on new
file descriptors that are created through this file
descriptor, e.g., through file_open().
Trait Implementations§
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