pub enum RadError {
Show 25 variants
Exit,
HookMacroFail(String),
InvalidConversion(String),
UnallowedChar(String),
AssertFail,
InvalidExecution(String),
InvalidCommandOption(String),
EnvError(VarError),
InvalidMacroName(String),
InvalidRegex(Error),
InvalidArgument(String),
InvalidArgInt(ParseIntError),
InvalidArgBoolean(ParseBoolError),
InvalidFile(String),
StdIo(Error),
Utf8Err(FromUtf8Error),
UnsupportedTableFormat(String),
BincodeError(String),
PermissionDenied(String, AuthType),
StrictPanic,
Panic,
ManualPanic(String),
StorageError(String),
UnallowedMacroExecution(String),
DcsvError(DcsvError),
}Expand description
R4d’s error type
Variants
Exit
HookMacroFail(String)
InvalidConversion(String)
UnallowedChar(String)
AssertFail
InvalidExecution(String)
InvalidCommandOption(String)
EnvError(VarError)
InvalidMacroName(String)
InvalidRegex(Error)
InvalidArgument(String)
InvalidArgInt(ParseIntError)
InvalidArgBoolean(ParseBoolError)
InvalidFile(String)
StdIo(Error)
Utf8Err(FromUtf8Error)
UnsupportedTableFormat(String)
BincodeError(String)
PermissionDenied(String, AuthType)
StrictPanic
Panic
ManualPanic(String)
StorageError(String)
UnallowedMacroExecution(String)
DcsvError(DcsvError)
Trait Implementations
sourceimpl From<FromUtf8Error> for RadError
impl From<FromUtf8Error> for RadError
sourcefn from(err: FromUtf8Error) -> Self
fn from(err: FromUtf8Error) -> Self
Converts to this type from the input type.
sourceimpl From<ParseBoolError> for RadError
impl From<ParseBoolError> for RadError
sourcefn from(err: ParseBoolError) -> Self
fn from(err: ParseBoolError) -> Self
Converts to this type from the input type.
sourceimpl From<ParseIntError> for RadError
impl From<ParseIntError> for RadError
sourcefn from(err: ParseIntError) -> Self
fn from(err: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for RadError
impl Send for RadError
impl Sync for RadError
impl Unpin for RadError
impl !UnwindSafe for RadError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more