pub struct DynInterp2dType<T> { /* private fields */ }
Expand description
Representation of a 2d Interpolation Type that is not known in compile-time.
Implementations§
Source§impl<T> DynInterp2dType<T>
impl<T> DynInterp2dType<T>
Trait Implementations§
Source§impl<T> Interp2dType<T> for DynInterp2dType<T>
impl<T> Interp2dType<T> for DynInterp2dType<T>
Source§type Interpolation2d = Box<dyn Interpolation2d<T> + Sync + Send>
type Interpolation2d = Box<dyn Interpolation2d<T> + Sync + Send>
The returned 2D Interpolator, containing the calculated coefficients and providing the
evaluation methods.
Source§fn build(
&self,
xa: &[T],
ya: &[T],
za: &[T],
) -> Result<Self::Interpolation2d, InterpolationError>
fn build( &self, xa: &[T], ya: &[T], za: &[T], ) -> Result<Self::Interpolation2d, InterpolationError>
Auto Trait Implementations§
impl<T> Freeze for DynInterp2dType<T>
impl<T> !RefUnwindSafe for DynInterp2dType<T>
impl<T> Send for DynInterp2dType<T>
impl<T> Sync for DynInterp2dType<T>
impl<T> Unpin for DynInterp2dType<T>
impl<T> !UnwindSafe for DynInterp2dType<T>
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