pub trait Shape: Sealed {
type Selectors<T: Instance>;
// Required method
fn selectors<T: Instance>() -> Self::Selectors<T>;
}Expand description
Configuration shape: maps a transceiver count to its selector bundle.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".