pub enum UError {
NoDisk = 8,
MaxOpen = 9,
NotFound = 10,
BadPath = 11,
FileExists = 12,
NotExec = 13,
}Expand description
Error Codes Enum only for the User’s File System
Variants§
NoDisk = 8
No free space left on disk
MaxOpen = 9
The maximum count of opened file exceeded
NotFound = 10
File or block not found
BadPath = 11
Bad path
FileExists = 12
File already exisits
NotExec = 13
File is not a valid executable