pub enum Interp1dMethod {
Linear,
CubicSpline,
BSpline,
}Expand description
Method selector for 1-D convenience function interp1d.
Variants§
Linear
Piecewise linear interpolation.
CubicSpline
Natural cubic spline interpolation.
BSpline
Uniform B-spline interpolation (degree 3).
Trait Implementations§
Source§impl Clone for Interp1dMethod
impl Clone for Interp1dMethod
Source§fn clone(&self) -> Interp1dMethod
fn clone(&self) -> Interp1dMethod
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 Interp1dMethod
impl Debug for Interp1dMethod
Source§impl PartialEq for Interp1dMethod
impl PartialEq for Interp1dMethod
impl Copy for Interp1dMethod
impl Eq for Interp1dMethod
impl StructuralPartialEq for Interp1dMethod
Auto Trait Implementations§
impl Freeze for Interp1dMethod
impl RefUnwindSafe for Interp1dMethod
impl Send for Interp1dMethod
impl Sync for Interp1dMethod
impl Unpin for Interp1dMethod
impl UnsafeUnpin for Interp1dMethod
impl UnwindSafe for Interp1dMethod
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