pub trait Reader<T, A = usize> {
type Error: Error;
// Required method
fn get(&self, accessor: A) -> Result<T, Self::Error>;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".