pub enum FsIOError {
PathAlreadyExists(String),
NotFile(String),
IOError(String, Option<Error>),
SystemTimeError(String, Option<SystemTimeError>),
}Expand description
Holds the error information
Variants
PathAlreadyExists(String)
Tuple Fields
0: StringPath already exist error type
NotFile(String)
Tuple Fields
0: StringNot a file error type
IOError(String, Option<Error>)
IO error type
SystemTimeError(String, Option<SystemTimeError>)
System time error type
