pub struct InterpolationStats {
pub interpolations: u64,
pub avg_degree: f64,
pub instability_warnings: u64,
}Expand description
Statistics for interpolation.
Fields§
§interpolations: u64Interpolations performed.
avg_degree: f64Average degree of interpolating polynomials.
instability_warnings: u64Numerical instability warnings.
Trait Implementations§
Source§impl Clone for InterpolationStats
impl Clone for InterpolationStats
Source§fn clone(&self) -> InterpolationStats
fn clone(&self) -> InterpolationStats
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 InterpolationStats
impl Debug for InterpolationStats
Source§impl Default for InterpolationStats
impl Default for InterpolationStats
Source§fn default() -> InterpolationStats
fn default() -> InterpolationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InterpolationStats
impl RefUnwindSafe for InterpolationStats
impl Send for InterpolationStats
impl Sync for InterpolationStats
impl Unpin for InterpolationStats
impl UnsafeUnpin for InterpolationStats
impl UnwindSafe for InterpolationStats
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