pub struct BilinearGrid { /* private fields */ }Expand description
A rectangular grid z[i][j] sampled at (xs[i], ys[j]), both axes
strictly increasing. Queries outside the grid are clamped (flat
extrapolation), matching the wing behavior of the 1-D smiles.
Implementations§
Trait Implementations§
Source§impl Clone for BilinearGrid
impl Clone for BilinearGrid
Source§fn clone(&self) -> BilinearGrid
fn clone(&self) -> BilinearGrid
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BilinearGrid
impl RefUnwindSafe for BilinearGrid
impl Send for BilinearGrid
impl Sync for BilinearGrid
impl Unpin for BilinearGrid
impl UnsafeUnpin for BilinearGrid
impl UnwindSafe for BilinearGrid
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