pub trait MarkdownElement: DynClone + Debug {
// Required method
fn render(&self) -> String;
}Expand description
An element that can be rendered as to markdown.
Required Methods§
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".