pub trait ToleranceConfig<T: Real> {
// Required methods
fn rtol<V: Into<Tolerance<T>>>(self, rtol: V) -> Self;
fn atol<V: Into<Tolerance<T>>>(self, atol: V) -> Self;
}Expand description
Trait to allow configuring tolerances on numerical methods generically.
Required Methods§
fn rtol<V: Into<Tolerance<T>>>(self, rtol: V) -> Self
fn atol<V: Into<Tolerance<T>>>(self, atol: V) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.