pub trait WithDilation<S: RawData, const N: usize> {
// Required method
fn with_dilation(
&self,
dilation: impl IntoDilation<N>,
) -> KernelWithDilation<'_, S, N>;
}
Expand description
Trait for adding dilation information to a kernel.
Required Methods§
fn with_dilation( &self, dilation: impl IntoDilation<N>, ) -> KernelWithDilation<'_, S, N>
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.