Trait ba2::ReaderWithOptions
source · pub trait ReaderWithOptions<T>: Sealed {
type Error;
type Item;
type Options;
// Required method
fn read(
source: T,
options: &Self::Options
) -> Result<Self::Item, Self::Error>;
}
Expand description
A trait that enables reading from various sources, with configuration options.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.