Update to modalkit{,-ratatui}@0.0.19 #391
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (1)
src/windows/mod.rs|385 col 38| error[E0412]: cannot find type ThreadItem
in this scope
--> src/windows/mod.rs:385:38
|
385 | pub type ThreadListState = ListState<ThreadItem, IambInfo>;
| ^^^^^^^^^^ not found in this scope
|
help: you might be missing a type parameter
|
385 | pub type ThreadListState = ListState<ThreadItem, IambInfo>;
| ++++++++++++
Filtered Findings (1)
src/base.rs|1394 col 1| error[E0599]: no variant or associated item named Threads
found for enum base::IambId
in the current scope
--> src/base.rs:1509:36
|
1394 | pub enum IambId {
| --------------- variant or associated item Threads
not found for this enum
...
1509 | Ok(IambId::Threads(room_id))
| ^^^^^^^ variant or associated item not found in IambId
Annotations
Check failure on line 385 in src/windows/mod.rs
github-actions / clippy
[clippy] src/windows/mod.rs#L385
error[E0412]: cannot find type `ThreadItem` in this scope
--> src/windows/mod.rs:385:38
|
385 | pub type ThreadListState = ListState<ThreadItem, IambInfo>;
| ^^^^^^^^^^ not found in this scope
|
help: you might be missing a type parameter
|
385 | pub type ThreadListState<ThreadItem> = ListState<ThreadItem, IambInfo>;
| ++++++++++++
Raw output
src/windows/mod.rs:385:38:e:error[E0412]: cannot find type `ThreadItem` in this scope
--> src/windows/mod.rs:385:38
|
385 | pub type ThreadListState = ListState<ThreadItem, IambInfo>;
| ^^^^^^^^^^ not found in this scope
|
help: you might be missing a type parameter
|
385 | pub type ThreadListState<ThreadItem> = ListState<ThreadItem, IambInfo>;
| ++++++++++++
__END__