pub trait Formattable {
    fn format(&self, fmt: impl Write) -> Result;
}
Expand description

A trait for formatting a message with core::fmt::Write

Required Methods§

Format the message

Implementors§