pub trait AdapterDescriptor<K: AdapterKind>: 'static {
type Configuration<'a>;
type Handler: ?Sized;
}
Expand description
Describes the layout of an adapter and its configuration type.
Required Associated Types§
Sourcetype Configuration<'a>
type Configuration<'a>
The datastructure that this adapter accepts during context creation.
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.