pub enum VomlErrorKind {
IOError(Error),
ParseError(ParseFail),
UnknownError,
}Expand description
Actual error data for the error
Variants§
IOError(Error)
The error type for I/O operations
ParseError(ParseFail)
The error type for I/O operations
UnknownError
Unknown error
Trait Implementations§
Source§impl Debug for VomlErrorKind
impl Debug for VomlErrorKind
Auto Trait Implementations§
impl Freeze for VomlErrorKind
impl !RefUnwindSafe for VomlErrorKind
impl Send for VomlErrorKind
impl Sync for VomlErrorKind
impl Unpin for VomlErrorKind
impl !UnwindSafe for VomlErrorKind
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