pub trait Reader<T>: Sealed {
type Error;
type Item;
// Required method
fn read(source: T) -> Result<Self::Item, Self::Error>;
}
Expand description
A trait that enables reading from various sources.
Required Associated Types§
Required Methods§
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.