pub struct ParametricSimplexStats {
pub breakpoints: u64,
pub intervals: u64,
pub iterations: u64,
}Expand description
Statistics for parametric simplex.
Fields§
§breakpoints: u64Number of breakpoints computed.
intervals: u64Number of intervals.
iterations: u64Simplex iterations.
Trait Implementations§
Source§impl Clone for ParametricSimplexStats
impl Clone for ParametricSimplexStats
Source§fn clone(&self) -> ParametricSimplexStats
fn clone(&self) -> ParametricSimplexStats
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 ParametricSimplexStats
impl Debug for ParametricSimplexStats
Source§impl Default for ParametricSimplexStats
impl Default for ParametricSimplexStats
Source§fn default() -> ParametricSimplexStats
fn default() -> ParametricSimplexStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParametricSimplexStats
impl RefUnwindSafe for ParametricSimplexStats
impl Send for ParametricSimplexStats
impl Sync for ParametricSimplexStats
impl Unpin for ParametricSimplexStats
impl UnsafeUnpin for ParametricSimplexStats
impl UnwindSafe for ParametricSimplexStats
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