Trait LayerValue

Source
pub trait LayerValue:
    Clone
    + Send
    + Sync
    + Versioned
    + VersionedLatest
    + Debug
    + Unpin
    + 'static { }
Expand description

Trait required for supporting Layer functionality.

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<V> LayerValue for V
where V: Clone + Send + Sync + Versioned + VersionedLatest + Debug + Unpin + 'static,