pub enum InterpolationError {
NoPoints,
DuplicateXValue,
DegreeTooHigh,
NumericalInstability,
}Expand description
Errors that can occur during interpolation.
Variants§
NoPoints
No interpolation points provided.
DuplicateXValue
Duplicate x-values in interpolation points.
DegreeTooHigh
Degree of interpolating polynomial would be too high.
NumericalInstability
Numerical instability detected.
Trait Implementations§
Source§impl Clone for InterpolationError
impl Clone for InterpolationError
Source§fn clone(&self) -> InterpolationError
fn clone(&self) -> InterpolationError
Returns a duplicate of the value. Read more
1.0.0 · 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 InterpolationError
impl Debug for InterpolationError
Source§impl Display for InterpolationError
impl Display for InterpolationError
Source§impl Error for InterpolationError
impl Error for InterpolationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for InterpolationError
impl PartialEq for InterpolationError
impl Eq for InterpolationError
impl StructuralPartialEq for InterpolationError
Auto Trait Implementations§
impl Freeze for InterpolationError
impl RefUnwindSafe for InterpolationError
impl Send for InterpolationError
impl Sync for InterpolationError
impl Unpin for InterpolationError
impl UnsafeUnpin for InterpolationError
impl UnwindSafe for InterpolationError
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