Skip to main content

CacheValueConstraints

Trait CacheValueConstraints 

Source
pub trait CacheValueConstraints:
    GetSize
    + Debug
    + Send
    + Sync
    + Clone
    + 'static { }

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

impl<T> CacheValueConstraints for T
where T: GetSize + Debug + Send + Sync + Clone + 'static,