pub enum OverError {
ArrOutOfBounds(usize),
ArrTypeMismatch(Type, Type),
FieldNotFound(String),
InvalidFieldName(String),
NoParentFound,
ParseError(String),
TupOutOfBounds(usize),
TupTypeMismatch(Type, Type, usize),
TypeMismatch(Type, Type),
IoError(String),
}
Expand description
The fabulous OVER error type.
Variants§
ArrOutOfBounds(usize)
ArrTypeMismatch(Type, Type)
FieldNotFound(String)
InvalidFieldName(String)
NoParentFound
ParseError(String)
TupOutOfBounds(usize)
TupTypeMismatch(Type, Type, usize)
TypeMismatch(Type, Type)
IoError(String)
Trait Implementations§
Source§impl Error for OverError
impl Error for OverError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
impl Eq for OverError
impl StructuralPartialEq for OverError
Auto Trait Implementations§
impl Freeze for OverError
impl RefUnwindSafe for OverError
impl Send for OverError
impl Sync for OverError
impl Unpin for OverError
impl UnwindSafe for OverError
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