Struct wasix::lib_generated64::Dirent
source · #[repr(C)]pub struct Dirent {
pub d_next: u64,
pub d_ino: u64,
pub d_namlen: u32,
pub d_type: Filetype,
}
Fields§
§d_next: u64
The offset of the next directory entry stored in this directory.
d_ino: u64
The serial number of the file referred to by this directory entry.
d_namlen: u32
The length of the name of the directory entry.
d_type: Filetype
The type of the file referred to by this directory entry.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Dirent
impl Send for Dirent
impl Sync for Dirent
impl Unpin for Dirent
impl UnwindSafe for Dirent
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