#[repr(C)]pub struct Dirent64 {
pub d_ino: u64,
pub d_off: i64,
pub d_reclen: u16,
pub d_type: u8,
pub d_name: PhantomData<c_char>,
}
Fields§
§d_ino: u64
64-bit inode number
d_off: i64
64-bit offset to next structure
d_reclen: u16
Size of this dirent
d_type: u8
File type
d_name: PhantomData<c_char>
Filename (null-terminated)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dirent64
impl RefUnwindSafe for Dirent64
impl Send for Dirent64
impl Sync for Dirent64
impl Unpin for Dirent64
impl UnwindSafe for Dirent64
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