pub enum FileType {
Directory = 257,
File = 258,
Symlink = 259,
BlockDevice = 260,
CharacterDevice = 261,
Socket = 263,
Fifo = 262,
}
Variants§
Directory = 257
File = 258
Symlink = 259
BlockDevice = 260
CharacterDevice = 261
Socket = 263
Fifo = 262
Trait Implementations§
Source§impl TryFrom<SqshFileType> for FileType
impl TryFrom<SqshFileType> for FileType
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