Skip to main content

StorageValue

Trait StorageValue 

Source
pub trait StorageValue:
    BackendValue
    + Serialize
    + DeserializeOwned
    + 'static { }
Expand description

Combined bounds for storage values

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> StorageValue for T
where T: BackendValue + Serialize + DeserializeOwned + 'static,