pub struct StatisticsInfo {Show 17 fields
pub iteration_count: Index,
pub final_objective: Number,
pub final_scaled_objective: Number,
pub final_dual_inf: Number,
pub final_constr_viol: Number,
pub final_compl: Number,
pub final_kkt_error: Number,
pub num_obj_evals: Index,
pub num_constr_evals: Index,
pub num_obj_grad_evals: Index,
pub num_constr_jac_evals: Index,
pub num_hess_evals: Index,
pub total_wallclock_time_secs: Number,
pub restoration_calls: Index,
pub restoration_inner_iters: Index,
pub restoration_outer_iters: Index,
pub restoration_wall_secs: Number,
}Expand description
Subset of SolveStatistics projected for the report. Mirrors the
fields the existing console summary prints.
Fields§
§iteration_count: Index§final_objective: Number§final_scaled_objective: Number§final_dual_inf: Number§final_constr_viol: Number§final_compl: Number§final_kkt_error: Number§num_obj_evals: Index§num_constr_evals: Index§num_obj_grad_evals: Index§num_constr_jac_evals: Index§num_hess_evals: Index§total_wallclock_time_secs: Number§restoration_calls: Index§restoration_inner_iters: Index§restoration_outer_iters: Index§restoration_wall_secs: NumberTrait Implementations§
Source§impl Clone for StatisticsInfo
impl Clone for StatisticsInfo
Source§fn clone(&self) -> StatisticsInfo
fn clone(&self) -> StatisticsInfo
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 StatisticsInfo
impl Debug for StatisticsInfo
Source§impl<'de> Deserialize<'de> for StatisticsInfo
impl<'de> Deserialize<'de> for StatisticsInfo
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
Auto Trait Implementations§
impl Freeze for StatisticsInfo
impl RefUnwindSafe for StatisticsInfo
impl Send for StatisticsInfo
impl Sync for StatisticsInfo
impl Unpin for StatisticsInfo
impl UnsafeUnpin for StatisticsInfo
impl UnwindSafe for StatisticsInfo
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