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