pub trait BoxedSignalStorage<T: ?Sized>:
Storage<Box<Self::DynReadable<SealedToken>>>
+ Storage<Box<Self::DynWritable<SealedToken>>>
+ Sealed
+ 'static { }Expand description
A trait for creating boxed readable and writable signals. This is implemented for UnsyncStorage and SyncStorage.
You may need to add this trait as a bound when you use ReadSignal or WriteSignal while remaining generic over syncness.
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.