Layer2

Trait Layer2 

Source
pub trait Layer2:
    Debug
    + CloneNoPersistence
    + Persisting {
    type Descr: Layer2Descriptor;
    type Data: Layer2Data;
    type Cache: Layer2Cache;
    type LoadError: Error;
    type StoreError: Error;
}

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.

Implementors§