chore(docs): update issue templates #24
check.yml
on: push
check
/
...
/
fmt
8s
check
/
...
/
doc
41s
check
/
...
/
check
43s
Matrix: check / clippy
Annotations
8 warnings
field `0` is never read:
src/events/message.rs#L6
warning: field `0` is never read
--> src/events/message.rs:6:11
|
6 | Error(String),
| ----- ^^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
6 | Error(()),
| ~~
|
field `name` is never read:
src/pages/containers.rs#L53
warning: field `name` is never read
--> src/pages/containers.rs:53:9
|
51 | pub struct Containers {
| ---------- field in this struct
52 | config: Box<Config>,
53 | pub name: String,
| ^^^^
|
= note: `Containers` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
field `name` is never read:
src/pages/images.rs#L49
warning: field `name` is never read
--> src/pages/images.rs:49:9
|
48 | pub struct Images {
| ------ field in this struct
49 | pub name: String,
| ^^^^
|
= note: `Images` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
field `discriminator` is never read:
src/components/alert_modal.rs#L27
warning: field `discriminator` is never read
--> src/components/alert_modal.rs:27:9
|
26 | pub struct AlertModal<P> {
| ---------- field in this struct
27 | pub discriminator: P,
| ^^^^^^^^^^^^^
|
= note: `AlertModal` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
field `0` is never read:
src/events/message.rs#L6
warning: field `0` is never read
--> src/events/message.rs:6:11
|
6 | Error(String),
| ----- ^^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
6 | Error(()),
| ~~
|
field `name` is never read:
src/pages/containers.rs#L53
warning: field `name` is never read
--> src/pages/containers.rs:53:9
|
51 | pub struct Containers {
| ---------- field in this struct
52 | config: Box<Config>,
53 | pub name: String,
| ^^^^
|
= note: `Containers` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
field `name` is never read:
src/pages/images.rs#L49
warning: field `name` is never read
--> src/pages/images.rs:49:9
|
48 | pub struct Images {
| ------ field in this struct
49 | pub name: String,
| ^^^^
|
= note: `Images` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
field `discriminator` is never read:
src/components/alert_modal.rs#L27
warning: field `discriminator` is never read
--> src/components/alert_modal.rs:27:9
|
26 | pub struct AlertModal<P> {
| ---------- field in this struct
27 | pub discriminator: P,
| ^^^^^^^^^^^^^
|
= note: `AlertModal` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|