pub struct FailedSolution {
pub solution: Solution,
pub reason: SolutionFailReason,
}Expand description
A failed solution.
Fields§
§solution: SolutionThe failed solution.
reason: SolutionFailReasonReason why the solution failed.
Trait Implementations§
Source§impl Clone for FailedSolution
impl Clone for FailedSolution
Source§fn clone(&self) -> FailedSolution
fn clone(&self) -> FailedSolution
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 FailedSolution
impl Debug for FailedSolution
Source§impl Hash for FailedSolution
impl Hash for FailedSolution
Source§impl Ord for FailedSolution
impl Ord for FailedSolution
Source§fn cmp(&self, other: &FailedSolution) -> Ordering
fn cmp(&self, other: &FailedSolution) -> 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 FailedSolution
impl PartialEq for FailedSolution
Source§impl PartialOrd for FailedSolution
impl PartialOrd for FailedSolution
impl Eq for FailedSolution
impl StructuralPartialEq for FailedSolution
Auto Trait Implementations§
impl Freeze for FailedSolution
impl RefUnwindSafe for FailedSolution
impl Send for FailedSolution
impl Sync for FailedSolution
impl Unpin for FailedSolution
impl UnwindSafe for FailedSolution
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