#[repr(C)]pub struct dirent {
pub d_ino: u64,
pub d_off: i64,
pub d_reclen: u16,
pub d_type: u8,
pub d_name: [i8; 256],
}
Fields§
§d_ino: u64
§d_off: i64
§d_reclen: u16
§d_type: u8
§d_name: [i8; 256]
Trait Implementations§
source§impl PartialEq<dirent> for dirent
impl PartialEq<dirent> for dirent
impl Copy for dirent
impl Eq for dirent
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
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.