Skip to main content

Reader

Trait Reader 

Source
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§

Source

fn read(&self, input: &str, options: &ReaderOptions) -> Result<Document>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§