Struct nc::types::linux_dirent64_t
source · [−]#[repr(C)]pub struct linux_dirent64_t {
pub d_ino: ino64_t,
pub d_off: loff_t,
pub d_reclen: u16,
pub d_type: u8,
pub d_name: [u8; 4096],
}Fields
d_ino: ino64_t64-bit inode number.
d_off: loff_t64-bit offset to next structure.
d_reclen: u16Size of this dirent.
d_type: u8File type.
d_name: [u8; 4096]Filename (null-terminated).
Trait Implementations
sourceimpl Clone for linux_dirent64_t
impl Clone for linux_dirent64_t
sourcefn clone(&self) -> linux_dirent64_t
fn clone(&self) -> linux_dirent64_t
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for linux_dirent64_t
impl Debug for linux_dirent64_t
impl Copy for linux_dirent64_t
Auto Trait Implementations
impl RefUnwindSafe for linux_dirent64_t
impl Send for linux_dirent64_t
impl Sync for linux_dirent64_t
impl Unpin for linux_dirent64_t
impl UnwindSafe for linux_dirent64_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more