pub enum SolutionFailReason {
ConstraintsFailed(String),
NotComposable,
}
Expand description
Reasons why a solution failed.
Variants§
ConstraintsFailed(String)
Constraint check failed.
NotComposable
Not composable with other solutions to build a batch.
Trait Implementations§
Source§impl Clone for SolutionFailReason
impl Clone for SolutionFailReason
Source§fn clone(&self) -> SolutionFailReason
fn clone(&self) -> SolutionFailReason
Returns a duplicate of the value. Read more
1.0.0 · 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 SolutionFailReason
impl Debug for SolutionFailReason
Source§impl<'de> Deserialize<'de> for SolutionFailReason
impl<'de> Deserialize<'de> for SolutionFailReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for SolutionFailReason
impl Display for SolutionFailReason
Source§impl Hash for SolutionFailReason
impl Hash for SolutionFailReason
Source§impl Ord for SolutionFailReason
impl Ord for SolutionFailReason
Source§fn cmp(&self, other: &SolutionFailReason) -> Ordering
fn cmp(&self, other: &SolutionFailReason) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SolutionFailReason
impl PartialEq for SolutionFailReason
Source§impl PartialOrd for SolutionFailReason
impl PartialOrd for SolutionFailReason
Source§impl Serialize for SolutionFailReason
impl Serialize for SolutionFailReason
impl Eq for SolutionFailReason
impl StructuralPartialEq for SolutionFailReason
Auto Trait Implementations§
impl Freeze for SolutionFailReason
impl RefUnwindSafe for SolutionFailReason
impl Send for SolutionFailReason
impl Sync for SolutionFailReason
impl Unpin for SolutionFailReason
impl UnwindSafe for SolutionFailReason
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