pub enum FsFileType {
Directory,
File,
Symlink,
Other,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for FsFileType
impl Clone for FsFileType
Source§fn clone(&self) -> FsFileType
fn clone(&self) -> FsFileType
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 FsFileType
impl Debug for FsFileType
Source§impl From<FileType> for FsFileType
impl From<FileType> for FsFileType
Source§impl From<String> for FsFileType
impl From<String> for FsFileType
Source§impl PartialEq for FsFileType
impl PartialEq for FsFileType
impl Copy for FsFileType
impl Eq for FsFileType
impl StructuralPartialEq for FsFileType
Auto Trait Implementations§
impl Freeze for FsFileType
impl RefUnwindSafe for FsFileType
impl Send for FsFileType
impl Sync for FsFileType
impl Unpin for FsFileType
impl UnsafeUnpin for FsFileType
impl UnwindSafe for FsFileType
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