Trait WithDilation

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl<S: RawData, const N: usize> WithDilation<S, N> for ArrayBase<S, Dim<[Ix; N]>>

Source§

fn with_dilation( &self, dilation: impl IntoDilation<N>, ) -> KernelWithDilation<'_, S, N>

Implementors§