pub trait AsFooter {
// Required method
fn as_footer(&self) -> Box<dyn MarkdownElement>;
}
Expand description
A MarkdownElement that can be rendered as a footer value.
Required Methods§
Returns the MarkdownElement
that can be used to render the footer.