pub trait HostProviderComponent:
Send
+ Sync
+ 'static {
type Stores: Default + 'static;
type RunState: 'static;
const ID: &'static str;
}Expand description
A statically composed Rust provider component.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".