pub trait AsyncStorable: Clone + Send + Sync + Debug + Unpin + 'static { }
Expand description

A trait for types that can be held in a collection used in an asynchronous context, which might be shared between many tasks. A blanket implementation is provided.

Implementors§

source§

impl<T: Clone + Send + Sync + Unpin + Debug + 'static> AsyncStorable for T