pub enum ErrorCategory {
Show 23 variants
Init,
Io(Error),
NotFound,
Unexpected,
Expected,
Misdefined,
Unknown,
MissingFile,
Malformed,
Libxml,
Convert,
Recursion,
EoF,
Endgroup,
FailedParse,
MaxLimit(usize),
Generic(Box<dyn ErrorTrait>),
Filename(String),
ToDo,
TokenLimit,
PushbackLimit,
IfLimit,
MemoryBudget,
}Variants§
Init
Io(Error)
NotFound
Unexpected
Expected
Misdefined
Unknown
MissingFile
Malformed
Libxml
Convert
Recursion
EoF
Endgroup
FailedParse
MaxLimit(usize)
Generic(Box<dyn ErrorTrait>)
Filename(String)
ToDo
TokenLimit
PushbackLimit
IfLimit
MemoryBudget
Trait Implementations§
Source§impl Debug for ErrorCategory
impl Debug for ErrorCategory
Auto Trait Implementations§
impl !RefUnwindSafe for ErrorCategory
impl !Send for ErrorCategory
impl !Sync for ErrorCategory
impl !UnwindSafe for ErrorCategory
impl Freeze for ErrorCategory
impl Unpin for ErrorCategory
impl UnsafeUnpin for ErrorCategory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more