AddLayer

Trait AddLayer 

Source
pub trait AddLayer {
    type LayerAdded<A>;

    // Required method
    fn add_layer<T: AddLayer>(self, tail: T) -> Self::LayerAdded<T>;
}

Required Associated Types§

Required Methods§

Source

fn add_layer<T: AddLayer>(self, tail: T) -> Self::LayerAdded<T>

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.

Implementors§

Source§

impl<A: AddLayer> AddLayer for KeyConfig<A>

Source§

impl<State: Eq + Copy + Debug + Hash + 'static> AddLayer for RemapLayer<State>

Source§

type LayerAdded<A> = RemapLayers<State, A>