pub trait Reader {
// Required method
fn read(&self, input: &str, options: &ReaderOptions) -> Result<Document>;
}Expand description
Parses input text in some source format into the document model.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".