table-format 0.0.5

Formats tables for printing to terminals and logs.
Documentation
1
2
3
4
5
use super::content::Content;

pub trait TableDataSource {
    fn get_data_iterator() -> dyn Iterator<Item = Vec<Content>>;
}