pub struct LegacyDirectoryEntry {
pub name: OsString,
pub kind: FileType,
}Available on crate feature
legacy_readdir only.Expand description
A directory entry without attributes for the legacy FUSE readdir operation.
Fields§
§name: OsStringName of the entry.
kind: FileTypeKind of file (directory, file, pipe, etc.).
Trait Implementations§
Source§impl Clone for LegacyDirectoryEntry
impl Clone for LegacyDirectoryEntry
Source§fn clone(&self) -> LegacyDirectoryEntry
fn clone(&self) -> LegacyDirectoryEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LegacyDirectoryEntry
impl RefUnwindSafe for LegacyDirectoryEntry
impl Send for LegacyDirectoryEntry
impl Sync for LegacyDirectoryEntry
impl Unpin for LegacyDirectoryEntry
impl UnsafeUnpin for LegacyDirectoryEntry
impl UnwindSafe for LegacyDirectoryEntry
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