pub trait FixedDimensionKernelBuilder<T> {
type Params;
// Required method
fn build() -> Result<Array3<T>, Error>;
// Provided method
fn build_with_params(_p: Self::Params) -> Result<Array3<T>, Error> { ... }
}
Expand description
Create a kernel with a fixed dimension
Required Associated Types§
Required Methods§
Provided Methods§
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.