remove redundant generic

This commit is contained in:
🪞👃🪞 2025-03-24 03:57:43 +02:00
parent 870bf249d8
commit d26c46d6e1
3 changed files with 6 additions and 8 deletions

View file

@ -12,7 +12,7 @@ pub struct Taggart {
pub cursor: usize,
pub offset: usize,
pub column: usize,
pub columns: Columns<Entry, fn(&Entry)->Option<Arc<str>>, fn(&mut [Entry], usize, &str)>,
pub columns: Columns<fn(&Entry)->Option<Arc<str>>, fn(&mut [Entry], usize, &str)>,
pub display: Measure<TuiOut>,
pub tasks: Vec<Task>,
pub mode: Option<Mode>,