pub trait Layer<S> {
type Step;
// Required method
fn layer(&self, step: S) -> Self::Step;
}Expand description
A layer to wrap a step
pub trait Layer<S> {
type Step;
// Required method
fn layer(&self, step: S) -> Self::Step;
}A layer to wrap a step