pub trait ConvElement:
OclPrm
+ Copy
+ 'static {
type Acc: OclPrm + Copy + 'static;
type Params: Copy + Into<Params> + Into<Self::ClParams>;
type ClParams: OclPrm;
}Expand description
Supported element types for convolutions.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".