Skip to content

Update to modalkit{,-ratatui}@0.0.19 #391

Update to modalkit{,-ratatui}@0.0.19

Update to modalkit{,-ratatui}@0.0.19 #391

GitHub Actions / clippy failed Apr 24, 2024 in 0s

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

See this annotation in the file changed.

@github-actions 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__