Skip to content

feat: implement Display trait instead of ToString to MenDrain

05e9ea9
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore: change loopdev dependency to loopdev-3 #427

feat: implement Display trait instead of ToString to MenDrain
05e9ea9
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jun 27, 2025 in 0s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.90.0-nightly (b03b3a7ec 2025-06-26)
  • cargo 1.90.0-nightly (409fed7dc 2025-06-23)
  • clippy 0.1.89 (b03b3a7ec9 2025-06-26)

Annotations

Check warning on line 64 in updatehub-sdk/tests/openapi_integration.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

lifetime flowing from input to output with different syntax can be confusing

warning: lifetime flowing from input to output with different syntax can be confusing
  --> updatehub-sdk/tests/openapi_integration.rs:64:14
   |
64 |     fn start(&self) -> (String, Container<ApiSprout>) {
   |              ^^^^^              -------------------- the lifetime gets resolved as `'_`
   |              |
   |              this lifetime flows to the output
   |
   = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
   |
64 |     fn start(&self) -> (String, Container<'_, ApiSprout>) {
   |                                           +++