pub trait Layer {
// Required methods
fn kind(&self) -> LayerKind;
fn process(&self, input: LayerInput) -> LayerOutput;
}pub trait Layer {
// Required methods
fn kind(&self) -> LayerKind;
fn process(&self, input: LayerInput) -> LayerOutput;
}