Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: toolchain と dependencies の更新 #97

Merged
merged 7 commits into from
Jun 19, 2024

fix: clippy `clippy::implied_bounds_in_impls`

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

chore: toolchain と dependencies の更新 #97

fix: clippy `clippy::implied_bounds_in_impls`
da24d66
Select commit
Loading
Failed to load commit list.
GitHub Actions / prod clippy succeeded Jun 19, 2024 in 0s

prod clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.81.0-nightly (59e2c01c2 2024-06-17)
  • cargo 1.81.0-nightly (a1f47ec3f 2024-06-15)
  • clippy 0.1.81 (59e2c01 2024-06-17)

Annotations

Check warning on line 384 in src/client/discord.rs

See this annotation in the file changed.

@github-actions github-actions / prod clippy

field `name` is never read

warning: field `name` is never read
   --> src/client/discord.rs:384:5
    |
382 | struct DiscordAuthor<'a> {
    |        ------------- field in this struct
383 |     id: u64,
384 |     name: String,
    |     ^^^^

Check warning on line 33 in src/bot/mod.rs

See this annotation in the file changed.

@github-actions github-actions / prod clippy

method `name` is never used

warning: method `name` is never used
  --> src/bot/mod.rs:33:8
   |
31 | pub(crate) trait User: Send + Sync {
   |                  ---- method in this trait
32 |     fn id(&self) -> u64;
33 |     fn name(&self) -> &str;
   |        ^^^^
   |
   = note: `#[warn(dead_code)]` on by default