Trait WindowedCoefficients
pub trait WindowedCoefficients: IncrementalTransform {
type Window<'a>
where Self: 'a;
// Required method
fn coefficients_window(&self) -> Self::Window<'_>;
}Required Associated Types§
type Window<'a>
where
Self: 'a
type Window<'a> where Self: 'a
Required Methods§
fn coefficients_window(&self) -> Self::Window<'_>
fn coefficients_window(&self) -> Self::Window<'_>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.