#[repr(C)]pub struct Fdstat {
pub fs_filetype: Filetype,
pub fs_flags: Fdflags,
pub fs_rights_base: Rights,
pub fs_rights_inheriting: Rights,
}
Fields§
§fs_filetype: Filetype
File type.
fs_flags: Fdflags
File descriptor flags.
fs_rights_base: Rights
Rights that apply to this file descriptor.
fs_rights_inheriting: Rights
Maximum set of rights that may be installed on new file descriptors that
are created through this file descriptor, e.g., through path_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