pub trait ConvIO {
type Output;
type Input;
type OutputShape;
type InputShape;
type FilterShape;
const N: usize;
}Expand description
Type-level input/output tensor metadata for conv layers.
Required Associated Constants§
Required Associated Types§
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.