Enum jj_lib::op_walk::OpsetEvaluationError
source · pub enum OpsetEvaluationError {
OpsetResolution(OpsetResolutionError),
OpHeadResolution(OpHeadResolutionError),
OpStore(OpStoreError),
}
Expand description
Error that may occur during evaluation of operation set expression.
Variants§
OpsetResolution(OpsetResolutionError)
Failed to resolve operation set expression.
OpHeadResolution(OpHeadResolutionError)
Failed to resolve the current operation heads.
OpStore(OpStoreError)
Failed to access operation object.
Trait Implementations§
source§impl Debug for OpsetEvaluationError
impl Debug for OpsetEvaluationError
source§impl Display for OpsetEvaluationError
impl Display for OpsetEvaluationError
source§impl Error for OpsetEvaluationError
impl Error for OpsetEvaluationError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<OpHeadResolutionError> for OpsetEvaluationError
impl From<OpHeadResolutionError> for OpsetEvaluationError
source§fn from(source: OpHeadResolutionError) -> Self
fn from(source: OpHeadResolutionError) -> Self
Converts to this type from the input type.
source§impl From<OpStoreError> for OpsetEvaluationError
impl From<OpStoreError> for OpsetEvaluationError
source§fn from(source: OpStoreError) -> Self
fn from(source: OpStoreError) -> Self
Converts to this type from the input type.
source§impl From<OpsetResolutionError> for OpsetEvaluationError
impl From<OpsetResolutionError> for OpsetEvaluationError
source§fn from(source: OpsetResolutionError) -> Self
fn from(source: OpsetResolutionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for OpsetEvaluationError
impl Send for OpsetEvaluationError
impl Sync for OpsetEvaluationError
impl Unpin for OpsetEvaluationError
impl !UnwindSafe for OpsetEvaluationError
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