lunar-lib 0.8.0

Common utilities for lunar applications
Documentation
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>;
}