pub enum InterpolationType {
Linear,
CubicSpline,
}Expand description
Selects the interpolation method for a Series.
Variants§
Linear
Linear interpolation.
CubicSpline
Natural cubic spline interpolation (falls back to linear if fewer than 4 points).
Auto Trait Implementations§
impl Freeze for InterpolationType
impl RefUnwindSafe for InterpolationType
impl Send for InterpolationType
impl Sync for InterpolationType
impl Unpin for InterpolationType
impl UnsafeUnpin for InterpolationType
impl UnwindSafe for InterpolationType
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