pub enum FileType {
NamedPipe,
CharDevice,
BlockDevice,
Directory,
RegularFile,
Symlink,
Socket,
Other(c_ulong),
}
Expand description
An enum representing a type of file.
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)
Other(c_ulong)
Other filetype (does not correspond to any of the other ones)
Implementations§
Trait Implementations§
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