pub trait WithDilation<S: RawData, const N: usize> {
    // Required method
    fn with_dilation(
        &self,
        dilation: impl IntoDilation<N>
    ) -> KernelWithDilation<'_, S, N>;
}

Required Methods§

source

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

Object Safety§

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§