pub trait Config: 'static {
type Output: 'static + Send;
type Parameter: 'static + Send;
type Value: 'static + Send;
type Context: 'static + Send + Sync;
}Required Associated Types§
type Output: 'static + Send
type Parameter: 'static + Send
type Value: 'static + Send
type Context: 'static + Send + Sync
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".