pub enum OptimStatus {
GradientConverged,
FunctionConverged,
StepConverged,
MaxIterations,
LineSearchFailed,
Infeasible,
Unbounded,
}Expand description
Status of an optimization run.
Variants§
GradientConverged
FunctionConverged
StepConverged
MaxIterations
LineSearchFailed
Infeasible
Unbounded
Trait Implementations§
Source§impl Clone for OptimStatus
impl Clone for OptimStatus
Source§fn clone(&self) -> OptimStatus
fn clone(&self) -> OptimStatus
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 moreSource§impl Debug for OptimStatus
impl Debug for OptimStatus
Source§impl PartialEq for OptimStatus
impl PartialEq for OptimStatus
Source§fn eq(&self, other: &OptimStatus) -> bool
fn eq(&self, other: &OptimStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OptimStatus
impl StructuralPartialEq for OptimStatus
Auto Trait Implementations§
impl Freeze for OptimStatus
impl RefUnwindSafe for OptimStatus
impl Send for OptimStatus
impl Sync for OptimStatus
impl Unpin for OptimStatus
impl UnsafeUnpin for OptimStatus
impl UnwindSafe for OptimStatus
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more