pub enum FileKind {
NamedPipe,
CharDevice,
BlockDevice,
Directory,
RegularFile,
Symlink,
Socket,
}
Expand description
File types
Variants§
NamedPipe
Named pipe (S_IFIFO)
CharDevice
Character device (S_IFCHR)
BlockDevice
Block device (S_IFBLK)
Directory
Directory (S_IFDIR)
RegularFile
Regular file (S_IFREG)
Symlink
Symbolic link (S_IFLNK)
Socket
Unix domain socket (S_IFSOCK)
Trait Implementations§
impl Copy for FileType
impl Eq for FileType
impl StructuralPartialEq for FileType
Auto Trait Implementations§
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
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