pub trait EntryContent {
    fn extension(&self) -> &'static str;
fn title(&self, date: &Date<Local>) -> String;
fn tag(&self, tag_name: String) -> String; }

Required methods

Implementors