Enum hyper_scripter::error::Error
source · [−]pub enum Error {
Show 21 variants
Others(Vec<String>, Option<Arc<dyn Send + Sync + Error + 'static>>),
SysPathNotFound(SysPath),
PermissionDenied(Vec<PathBuf>),
PathNotFound(Vec<PathBuf>),
GeneralFS(Vec<PathBuf>, Arc<Error>),
PathExist(PathBuf),
ScriptExist(String),
ScriptIsFiltered(String),
ScriptNotFound(String),
NoAlias(String),
UnknownType(String),
Format(FormatCode, String),
ScriptError(i32),
PreRunError(i32),
EditorError(i32, Vec<String>),
RedundantOpt(RedundantOpt),
TagFilterNotFound(String),
DontFuzz,
NoPreviousArgs,
Empty,
Completion,
}
Variants
Others(Vec<String>, Option<Arc<dyn Send + Sync + Error + 'static>>)
SysPathNotFound(SysPath)
PermissionDenied(Vec<PathBuf>)
PathNotFound(Vec<PathBuf>)
GeneralFS(Vec<PathBuf>, Arc<Error>)
PathExist(PathBuf)
ScriptExist(String)
ScriptIsFiltered(String)
ScriptNotFound(String)
NoAlias(String)
UnknownType(String)
Format(FormatCode, String)
ScriptError(i32)
PreRunError(i32)
EditorError(i32, Vec<String>)
RedundantOpt(RedundantOpt)
TagFilterNotFound(String)
DontFuzz
NoPreviousArgs
Empty
Completion
Implementations
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
Blanket Implementations
Mutably borrows from an owned value. Read more