#[repr(C)]pub struct _ftsent {Show 20 fields
pub fts_cycle: *mut _ftsent,
pub fts_parent: *mut _ftsent,
pub fts_link: *mut _ftsent,
pub fts_number: c_long,
pub fts_pointer: *mut c_void,
pub fts_accpath: *mut c_char,
pub fts_path: *mut c_char,
pub fts_errno: c_int,
pub fts_symfd: c_int,
pub fts_pathlen: c_ushort,
pub fts_namelen: c_ushort,
pub fts_ino: ino_t,
pub fts_dev: dev_t,
pub fts_nlink: nlink_t,
pub fts_level: c_short,
pub fts_info: c_ushort,
pub fts_flags: c_ushort,
pub fts_instr: c_ushort,
pub fts_statp: *mut stat,
pub fts_name: [c_char; 1],
}Fields§
§fts_cycle: *mut _ftsent§fts_parent: *mut _ftsent§fts_link: *mut _ftsent§fts_number: c_long§fts_pointer: *mut c_void§fts_accpath: *mut c_char§fts_path: *mut c_char§fts_errno: c_int§fts_symfd: c_int§fts_pathlen: c_ushort§fts_namelen: c_ushort§fts_ino: ino_t§fts_dev: dev_t§fts_nlink: nlink_t§fts_level: c_short§fts_info: c_ushort§fts_flags: c_ushort§fts_instr: c_ushort§fts_statp: *mut stat§fts_name: [c_char; 1]Trait Implementations§
Auto Trait Implementations§
impl Freeze for _ftsent
impl RefUnwindSafe for _ftsent
impl !Send for _ftsent
impl !Sync for _ftsent
impl Unpin for _ftsent
impl UnwindSafe for _ftsent
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