pub trait Reader {
// Required method
fn document(
&self,
content: &str,
markdown_options: &MarkdownOptions,
) -> Document;
}Required Methods§
fn document( &self, content: &str, markdown_options: &MarkdownOptions, ) -> Document
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".