pub enum InternalSolverError {
ObjectiveUnbounded,
DualOptimizeFailed,
FailedToFindLeavingRow,
EditConstraintNotInSystem,
}Variants§
Trait Implementations§
Source§impl Clone for InternalSolverError
impl Clone for InternalSolverError
Source§fn clone(&self) -> InternalSolverError
fn clone(&self) -> InternalSolverError
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 InternalSolverError
impl Debug for InternalSolverError
Source§impl Display for InternalSolverError
impl Display for InternalSolverError
Source§impl Error for InternalSolverError
impl Error for InternalSolverError
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 From<InternalSolverError> for AddConstraintError
impl From<InternalSolverError> for AddConstraintError
Source§fn from(source: InternalSolverError) -> Self
fn from(source: InternalSolverError) -> Self
Converts to this type from the input type.
Source§impl From<InternalSolverError> for RemoveConstraintError
impl From<InternalSolverError> for RemoveConstraintError
Source§fn from(source: InternalSolverError) -> Self
fn from(source: InternalSolverError) -> Self
Converts to this type from the input type.
Source§impl From<InternalSolverError> for RemoveEditVariableError
impl From<InternalSolverError> for RemoveEditVariableError
Source§fn from(source: InternalSolverError) -> Self
fn from(source: InternalSolverError) -> Self
Converts to this type from the input type.
Source§impl From<InternalSolverError> for SuggestValueError
impl From<InternalSolverError> for SuggestValueError
Source§fn from(source: InternalSolverError) -> Self
fn from(source: InternalSolverError) -> Self
Converts to this type from the input type.
impl Copy for InternalSolverError
Auto Trait Implementations§
impl Freeze for InternalSolverError
impl RefUnwindSafe for InternalSolverError
impl Send for InternalSolverError
impl Sync for InternalSolverError
impl Unpin for InternalSolverError
impl UnwindSafe for InternalSolverError
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