6 lines
102 B
Rust
6 lines
102 B
Rust
|
pub(crate) trait Row {
|
||
|
fn header() -> &'static [&'static str];
|
||
|
|
||
|
fn entries(&self) -> Vec<&str>;
|
||
|
}
|