Struct rustdoc::html::markdown::Markdown[][src]

pub struct Markdown<'a>(pub &'a str, pub &'a [(String, String)]);

A unit struct which has the fmt::Display trait implemented. When formatted, this struct will emit the HTML corresponding to the rendered version of the contained markdown string. The second parameter is a list of link replacements

Trait Implementations

impl<'a> Display for Markdown<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Markdown<'a>

impl<'a> Sync for Markdown<'a>