pub type FileType = FileType;
Expand description
A structure representing a type of file with accessors for each file type.
It is returned by Metadata::file_type
method.
Aliased Type§
enum FileType {
Fifo = 1,
CharDevice = 2,
Dir = 4,
BlockDevice = 6,
File = 8,
SymLink = 10,
Socket = 12,
}