Skip to main content

HtmlDescriptionLinter

Trait HtmlDescriptionLinter 

Source
pub trait HtmlDescriptionLinter {
    // Required method
    fn description_html(&self) -> String;
}
Expand description

A blanket-implemented trait that renders the Markdown description field of a linter to HTML.

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<L> HtmlDescriptionLinter for L
where L: Linter + ?Sized,