pub enum SolverStatus {
NotSolving,
SolvingActive,
TerminatingEarly,
SolvingScheduled,
Unknown,
}Expand description
The state of the solver for a given job.
Variants§
NotSolving
The solver is idle and not working on the job.
SolvingActive
The solver is actively working on the job.
TerminatingEarly
The solver is winding down and terminating early.
SolvingScheduled
The job is queued and scheduled to start solving.
Unknown
Any status value not otherwise recognized.
Trait Implementations§
Source§impl Clone for SolverStatus
impl Clone for SolverStatus
Source§fn clone(&self) -> SolverStatus
fn clone(&self) -> SolverStatus
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 moreimpl Copy for SolverStatus
Source§impl Debug for SolverStatus
impl Debug for SolverStatus
Source§impl<'de> Deserialize<'de> for SolverStatus
impl<'de> Deserialize<'de> for SolverStatus
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
impl Eq for SolverStatus
Source§impl PartialEq for SolverStatus
impl PartialEq for SolverStatus
Source§impl Serialize for SolverStatus
impl Serialize for SolverStatus
impl StructuralPartialEq for SolverStatus
Auto Trait Implementations§
impl Freeze for SolverStatus
impl RefUnwindSafe for SolverStatus
impl Send for SolverStatus
impl Sync for SolverStatus
impl Unpin for SolverStatus
impl UnsafeUnpin for SolverStatus
impl UnwindSafe for SolverStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.