pub enum EvaluationError {
DepthExceeded {
key: Box<EvaluationKey>,
},
FanoutExceeded {
limit: NonZeroU32,
},
}Expand description
Errors produced by the shared evaluation engine.
Variants§
DepthExceeded
A recursive evaluation exceeded the configured depth limit.
Fields
§
key: Box<EvaluationKey>Evaluation key that exceeded the limit.
FanoutExceeded
A single evaluator step exceeded the configured fanout limit.
Fields
§
limit: NonZeroU32Configured fanout limit.
Trait Implementations§
Source§impl Clone for EvaluationError
impl Clone for EvaluationError
Source§fn clone(&self) -> EvaluationError
fn clone(&self) -> EvaluationError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EvaluationError
impl Debug for EvaluationError
Source§impl Display for EvaluationError
impl Display for EvaluationError
Source§impl Error for EvaluationError
impl Error for EvaluationError
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
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<EvaluationError> for EngineError
impl From<EvaluationError> for EngineError
Source§fn from(error: EvaluationError) -> Self
fn from(error: EvaluationError) -> Self
Converts to this type from the input type.
Source§impl From<EvaluationError> for ZanzibarError
impl From<EvaluationError> for ZanzibarError
Source§fn from(source: EvaluationError) -> Self
fn from(source: EvaluationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EvaluationError
impl PartialEq for EvaluationError
Source§fn eq(&self, other: &EvaluationError) -> bool
fn eq(&self, other: &EvaluationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EvaluationError
impl StructuralPartialEq for EvaluationError
Auto Trait Implementations§
impl Freeze for EvaluationError
impl RefUnwindSafe for EvaluationError
impl Send for EvaluationError
impl Sync for EvaluationError
impl Unpin for EvaluationError
impl UnsafeUnpin for EvaluationError
impl UnwindSafe for EvaluationError
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