pub enum ErrorKind {
Execution,
ParamResolution,
}Expand description
Classification of the error that caused a system failure.
Used in CaughtError to distinguish error sources without parsing
message strings.
§Examples
use polaris_graph::ErrorKind;
let kind = ErrorKind::Execution;
assert_eq!(format!("{kind}"), "execution");
let kind = ErrorKind::ParamResolution;
assert_eq!(format!("{kind}"), "param_resolution");Variants§
Execution
System returned Err(SystemError::ExecutionError(...)).
ParamResolution
System parameter resolution failed (Err(SystemError::ParamError(...))).
Trait Implementations§
impl Copy for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnsafeUnpin for ErrorKind
impl UnwindSafe for ErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.