You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: field `channel_table` is never read
--> core/src/macro_executor.rs:216:5
|
213 | pub struct MacroExecutor {
| ------------- field in this struct
...
216 | channel_table:
| ^^^^^^^^^^^^^
|
= note: `MacroExecutor` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
warning: fields `path_to_resources`, `restart_on_crash`, and `backup_period` are never read
--> core/src/implementations/minecraft/mod.rs:187:5
|
174 | pub struct MinecraftInstance {
| ----------------- fields in this struct
...
187 | path_to_resources: PathBuf,
| ^^^^^^^^^^^^^^^^^
...
192 | restart_on_crash: Arc<AtomicBool>,
| ^^^^^^^^^^^^^^^^
193 | backup_period: Option<u32>,
| ^^^^^^^^^^^^^
|
= note: `MinecraftInstance` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis
warning: field `procedure_call_kind` is never read
--> core/src/implementations/generic/bridge/procedure_call.rs:337:5
|
334 | pub struct ProcedureCallResultIR {
| --------------------- field in this struct
...
337 | procedure_call_kind: ProcedureCallKind,
| ^^^^^^^^^^^^^^^^^^^
|
= note: `ProcedureCallResultIR` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
warning: variable does not need to be mutable
--> core/src/implementations/generic/bridge/procedure_call.rs:392:35
|
392 | let (procedure_result_tx, mut procedure_result_rx) = tokio::sync::broadcast::channel(256);
| ----^^^^^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default