1 2 3 4 5 6 7 8
use crate::formatter::FormatTable; /// A trait for anything that can be turned into `key=value` pairs pub trait Taggable { type Err; fn fill_table(&self, table: &mut FormatTable) -> Result<(), Self::Err>; }