formatted_debug 0.1.0

A small library which provides help with basic formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Table Formatting
//!
//! `table_formatting` is a module to format values 
//! into vectors of strings which represent tables

pub mod grid_formatting;
pub mod string_grid;

pub trait StringTable {
    fn to_table(&self) -> Vec<String>;
}