Skip to content

fix[curserinth]: forgot iter() here #174

fix[curserinth]: forgot iter() here

fix[curserinth]: forgot iter() here #174

GitHub Actions / clippy failed Feb 2, 2024 in 0s

clippy

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.75.0 (82e1608df 2023-12-21)
  • cargo 1.75.0 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (82e1608 2023-12-21)

Annotations

Check failure on line 92 in src/sources/curserinth.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find function `iter` in this scope

error[E0425]: cannot find function `iter` in this scope
  --> src/sources/curserinth.rs:92:1
   |
92 | iter().any(|l| l.as_str() == loader)
   | ^^^^ not found in this scope
   |
help: consider importing this function
   |
1  + use tokio_stream::iter;
   |