Skip to main content

LayerValue

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".

Implementors§

Source§

impl<V> LayerValue for V
where V: Clone + Send + Sync + Versioned + VersionedLatest + Debug + Unpin + 'static,