mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-03 10:04:12 +02:00
clippy fix
This commit is contained in:
parent
cd36ba9a8f
commit
14734ad089
1 changed files with 2 additions and 2 deletions
|
|
@ -183,7 +183,7 @@ impl<'a> GroupedLogsState<'a> {
|
||||||
let table_state = ScrollbarTableState::new(trace_len);
|
let table_state = ScrollbarTableState::new(trace_len);
|
||||||
UiState::Log(LogState {
|
UiState::Log(LogState {
|
||||||
log,
|
log,
|
||||||
full_line,
|
full_line: Box::new(full_line),
|
||||||
table_state,
|
table_state,
|
||||||
previous: Box::new(self.into()),
|
previous: Box::new(self.into()),
|
||||||
})
|
})
|
||||||
|
|
@ -226,7 +226,7 @@ impl PartialEq for ErrorLinesState<'_> {
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct LogState<'a> {
|
pub struct LogState<'a> {
|
||||||
pub log: &'a LogLine<'a>,
|
pub log: &'a LogLine<'a>,
|
||||||
pub full_line: FullLogLine,
|
pub full_line: Box<FullLogLine>,
|
||||||
pub table_state: ScrollbarTableState,
|
pub table_state: ScrollbarTableState,
|
||||||
pub previous: Box<UiState<'a>>,
|
pub previous: Box<UiState<'a>>,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue