9098d36840
- Mention various chat channels - Add `intermodal-bin` package to package table - Document `bin/gen` - Add contributing section - Link to book type: documentation
6 lines
102 B
Rust
6 lines
102 B
Rust
pub(crate) trait Row {
|
|
fn header() -> &'static [&'static str];
|
|
|
|
fn entries(&self) -> Vec<&str>;
|
|
}
|