intermodal/bin/gen/src/row.rs
Casey Rodarmor 9098d36840
Readme improvements
- Mention various chat channels
- Add `intermodal-bin` package to package table
- Document `bin/gen`
- Add contributing section
- Link to book

type: documentation
2020-04-17 23:28:08 -07:00

6 lines
102 B
Rust

pub(crate) trait Row {
fn header() -> &'static [&'static str];
fn entries(&self) -> Vec<&str>;
}