pub enum IoError {
ReadFile(String, Error),
ReadDir(String, Error),
RemoveDir(String, Error),
CreateDir(String, Error),
CopyDir(String, Error),
WriteFile(String, Error),
}
Expand description
Error type for Unreact
, relating to IO fails
Variants§
ReadFile(String, Error)
ReadDir(String, Error)
RemoveDir(String, Error)
CreateDir(String, Error)
CopyDir(String, Error)
WriteFile(String, Error)
Trait Implementations§
source§impl Error for IoError
impl Error for IoError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()