pub struct ReaddirEntry {
    pub basename: Bytes,
    pub filetype: u32,
    pub ino: u64,
}Fields§
§basename: BytesFilename
filetype: u32File mode
ino: u64Inode number
Trait Implementations§
Source§impl Clone for ReaddirEntry
 
impl Clone for ReaddirEntry
Source§fn clone(&self) -> ReaddirEntry
 
fn clone(&self) -> ReaddirEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for ReaddirEntry
 
impl Debug for ReaddirEntry
Source§impl<'de> Deserialize<'de> for ReaddirEntry
 
impl<'de> Deserialize<'de> for ReaddirEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl !Freeze for ReaddirEntry
impl RefUnwindSafe for ReaddirEntry
impl Send for ReaddirEntry
impl Sync for ReaddirEntry
impl Unpin for ReaddirEntry
impl UnwindSafe for ReaddirEntry
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