pub struct DirEntry {
pub name: LxString,
pub inode_nr: ino_t,
pub offset: off_t,
pub file_type: u8,
}
Expand description
A directory entry returned by LxFile::read_dir
.
Fields§
§name: LxString
§inode_nr: ino_t
§offset: off_t
§file_type: u8
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DirEntry
impl RefUnwindSafe for DirEntry
impl Send for DirEntry
impl Sync for DirEntry
impl Unpin for DirEntry
impl UnwindSafe for DirEntry
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