rustdoc_to_markdown

Trait DocProcess

Source
pub trait DocProcess<S: Into<String>> {
    // Provided method
    fn process_docs(self, indent_headings: bool) -> Vec<String>
       where Self: Sized + Iterator<Item = S> { ... }
}

Provided Methods§

Source

fn process_docs(self, indent_headings: bool) -> Vec<String>
where Self: Sized + Iterator<Item = S>,

Implementors§

Source§

impl<S: Into<String>, I: Iterator<Item = S>> DocProcess<S> for I