pub trait Formattable {
// Required method
fn format(&self, formatter: &mut Formatter<'_>, _: Nesting) -> Result;
}
Expand description
Represents a value that can be formatted for HTML.
pub trait Formattable {
// Required method
fn format(&self, formatter: &mut Formatter<'_>, _: Nesting) -> Result;
}
Represents a value that can be formatted for HTML.