Skip to content

fun: ✨ STATICALLY DISPATCHED CLIENTS ✨ + other stuff #443

fun: ✨ STATICALLY DISPATCHED CLIENTS ✨ + other stuff

fun: ✨ STATICALLY DISPATCHED CLIENTS ✨ + other stuff #443

GitHub Actions / dev clippy succeeded Dec 1, 2024 in 1s

dev clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

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

See this annotation in the file changed.

@github-actions github-actions / dev clippy

methods `on_vc_data_available`, `on_vc_join`, and `on_vc_leave` are never used

warning: methods `on_vc_data_available`, `on_vc_join`, and `on_vc_leave` are never used
   --> src/bot/mod.rs:99:8
    |
87  | pub trait BotService<R: Runtime>: Send + Sync {
    |           ---------- methods in this trait
...
99  |     fn on_vc_data_available(
    |        ^^^^^^^^^^^^^^^^^^^^
...
108 |     fn on_vc_join(
    |        ^^^^^^^^^^
...
117 |     fn on_vc_leave(
    |        ^^^^^^^^^^^

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

See this annotation in the file changed.

@github-actions github-actions / dev clippy

method `name` is never used

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