pub trait Driver<T: Ix> {
const SUPPORTED: bool;
}Expand description
A driver adapts an external representation (serde, zerocopy, …) to any
Ix type by reading its Manifest.
All capability decisions are const: code that branches on
Driver::SUPPORTED is dead-code-eliminated, keeping drivers zero-cost.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".