Skip to main content

CacheValue

Trait CacheValue 

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

Unified cache value trait

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: Send + Sync + Clone + 'static,