Skip to main content

CacheValue

Trait CacheValue 

Source
pub trait CacheValue:
    Clone
    + Send
    + Sync
    + 'static { }
Expand description

Common bounds for cache values

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

impl<T> CacheValue for T
where T: Clone + Send + Sync + 'static,