pub enum PropagaError {
DomainEmpty(VariableId),
UnknownVariable(VariableId),
UnknownPropagator,
}Expand description
Errors returned by the propagation engine.
Variants§
DomainEmpty(VariableId)
A variable domain became empty during propagation.
UnknownVariable(VariableId)
A variable handle does not exist in the engine.
UnknownPropagator
A propagator handle does not exist in the engine.
Trait Implementations§
Source§impl Debug for PropagaError
impl Debug for PropagaError
Source§impl Display for PropagaError
impl Display for PropagaError
impl Eq for PropagaError
Source§impl Error for PropagaError
impl Error for PropagaError
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 PartialEq for PropagaError
impl PartialEq for PropagaError
Source§fn eq(&self, other: &PropagaError) -> bool
fn eq(&self, other: &PropagaError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PropagaError
Auto Trait Implementations§
impl Freeze for PropagaError
impl RefUnwindSafe for PropagaError
impl Send for PropagaError
impl Sync for PropagaError
impl Unpin for PropagaError
impl UnsafeUnpin for PropagaError
impl UnwindSafe for PropagaError
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