pub struct CompareRow {
pub label: String,
pub status: String,
pub iter_count: i32,
pub final_objective: f64,
pub final_kkt_error: f64,
pub restoration_calls: i32,
pub elapsed_seconds: f64,
}Expand description
One row in a side-by-side comparison.
Fields§
§label: String§status: String§iter_count: i32§final_objective: f64§final_kkt_error: f64§restoration_calls: i32§elapsed_seconds: f64Trait Implementations§
Source§impl Clone for CompareRow
impl Clone for CompareRow
Source§fn clone(&self) -> CompareRow
fn clone(&self) -> CompareRow
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 CompareRow
impl Debug for CompareRow
Source§impl<'de> Deserialize<'de> for CompareRow
impl<'de> Deserialize<'de> for CompareRow
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 CompareRow
impl RefUnwindSafe for CompareRow
impl Send for CompareRow
impl Sync for CompareRow
impl Unpin for CompareRow
impl UnsafeUnpin for CompareRow
impl UnwindSafe for CompareRow
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