[][src]Trait markdown_composer::traits::MarkdownElement

pub trait MarkdownElement: DynClone + Debug {
    fn render(&self) -> String;
}

Required methods

fn render(&self) -> String

Loading content...

Implementors

impl<T> MarkdownElement for T where
    T: Clone + Debug + Display
[src]

Loading content...