Trait ndarray_stats::interpolate::Interpolate
source · pub trait Interpolate<T> {
// Required method
fn __private__(&self, _: PrivateMarker);
}
Expand description
Used to provide an interpolation strategy to quantile_axis_mut
.
Required Methods§
sourcefn __private__(&self, _: PrivateMarker)
fn __private__(&self, _: PrivateMarker)
This method makes this trait impossible to implement outside of
ndarray-stats
so that we can freely add new methods, etc., to
this trait without breaking changes.
We don’t anticipate any other crates needing to implement this trait, but if you do have such a use-case, please let us know.
Warning This method is not considered part of the public API, and client code should not rely on it being present. It may be removed in a non-breaking release.
Object Safety§
This trait is not object safe.