pub trait StoreRequest<'a>: Sealed { }
Expand description
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
impl<'a> StoreRequest<'a> for ()
Implements a no-op for Actors that do not read or write any values.
impl<'a, T> StoreRequest<'a> for (T,)where
T: StoreRequest<'a>,
This trait is implemented for tuples up to seven items long.