pub enum PredicatesError<E> {
    Failed(PredicateErrors<E>),
    Join(JoinError),
    GasOverflowed,
}Expand description
check_set_predicates error.
Variants§
Failed(PredicateErrors<E>)
One or more solution failed their associated predicate checks.
Join(JoinError)
One or more tasks failed to join.
GasOverflowed
Summing solution gas resulted in overflow.
Trait Implementations§
Source§impl<E: Debug> Debug for PredicatesError<E>
 
impl<E: Debug> Debug for PredicatesError<E>
Source§impl<E> Display for PredicatesError<E>where
    PredicateErrors<E>: Display,
 
impl<E> Display for PredicatesError<E>where
    PredicateErrors<E>: Display,
Source§impl<E> Error for PredicatesError<E>
 
impl<E> Error for PredicatesError<E>
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<E> From<JoinError> for PredicatesError<E>
 
impl<E> From<JoinError> for PredicatesError<E>
Source§impl<E> From<PredicateErrors<E>> for PredicatesError<E>
 
impl<E> From<PredicateErrors<E>> for PredicatesError<E>
Source§fn from(source: PredicateErrors<E>) -> Self
 
fn from(source: PredicateErrors<E>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for PredicatesError<E>
impl<E> !RefUnwindSafe for PredicatesError<E>
impl<E> Send for PredicatesError<E>where
    E: Send,
impl<E> Sync for PredicatesError<E>where
    E: Sync,
impl<E> Unpin for PredicatesError<E>where
    E: Unpin,
impl<E> !UnwindSafe for PredicatesError<E>
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