pub enum RiddleError {
NotAnEnvironment(String),
NotAClass(String),
NotAPredicate(String),
TypeError(String),
NotFound(String),
InconsistencyError(String),
RuntimeError(String),
}Variants§
NotAnEnvironment(String)
NotAClass(String)
NotAPredicate(String)
TypeError(String)
NotFound(String)
InconsistencyError(String)
RuntimeError(String)
Trait Implementations§
Source§impl Debug for RiddleError
impl Debug for RiddleError
Auto Trait Implementations§
impl Freeze for RiddleError
impl RefUnwindSafe for RiddleError
impl Send for RiddleError
impl Sync for RiddleError
impl Unpin for RiddleError
impl UnsafeUnpin for RiddleError
impl UnwindSafe for RiddleError
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