#[repr(C)]pub struct Dirent64 {
pub d_ino: u64,
pub d_off: i64,
pub d_reclen: u16,
pub d_type: FileType,
pub d_name: PhantomData<c_char>,
}Fields§
§d_ino: u6464-bit inode number
d_off: i64Field without meaning. Kept for BW compatibility.
d_reclen: u16Size of this dirent
d_type: FileTypeFile type
d_name: PhantomData<c_char>Filename (null-terminated)
Auto Trait Implementations§
impl Freeze for Dirent64
impl RefUnwindSafe for Dirent64
impl Send for Dirent64
impl Sync for Dirent64
impl Unpin for Dirent64
impl UnsafeUnpin 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