Trait StoreRequest
pub trait StoreRequest<'a>: Sealed { }Expand description
Allows requesting a (nearly) arbitrary amount of readers and writers in an Actor.
This trait is not intended for direct usage by users.
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.