Skip to main content

Reader

Trait Reader 

Source
pub trait Reader {
    // Required method
    fn document(
        &self,
        content: &str,
        markdown_options: &MarkdownOptions,
    ) -> Document;
}

Required Methods§

Source

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".

Implementors§