pub trait EntryFormatter {
// Required method
fn format_field(
&self,
entry: &DecoratedEntry,
format: &str,
) -> Option<String>;
}pub trait EntryFormatter {
// Required method
fn format_field(
&self,
entry: &DecoratedEntry,
format: &str,
) -> Option<String>;
}