pub enum Interp2dMethod {
Bilinear,
Bicubic,
}Expand description
Method selector for 2-D convenience function interp2d.
Variants§
Bilinear
Bilinear interpolation on a rectilinear grid.
Bicubic
Bicubic interpolation on a rectilinear grid.
Trait Implementations§
Source§impl Clone for Interp2dMethod
impl Clone for Interp2dMethod
Source§fn clone(&self) -> Interp2dMethod
fn clone(&self) -> Interp2dMethod
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 Interp2dMethod
impl Debug for Interp2dMethod
Source§impl PartialEq for Interp2dMethod
impl PartialEq for Interp2dMethod
impl Copy for Interp2dMethod
impl Eq for Interp2dMethod
impl StructuralPartialEq for Interp2dMethod
Auto Trait Implementations§
impl Freeze for Interp2dMethod
impl RefUnwindSafe for Interp2dMethod
impl Send for Interp2dMethod
impl Sync for Interp2dMethod
impl Unpin for Interp2dMethod
impl UnsafeUnpin for Interp2dMethod
impl UnwindSafe for Interp2dMethod
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