pub trait FilterRow {
// Required method
fn filter_row(
&self,
typ: LineType,
irow: usize,
row: &[(Cow<'_, str>, [usize; 2])],
) -> bool;
// Provided method
fn need_args(&self) -> bool { ... }
}
Expand description
Filter columns of a table to print it only partially.