Nightly Demo/Examples Clippy Output
7 errors
Details
Results
| Message level | Amount |
|---|---|
| Internal compiler error | 0 |
| Error | 7 |
| Warning | 0 |
| Note | 0 |
| Help | 0 |
Versions
- rustc 1.96.0-nightly (b90dc1e59 2026-03-04)
- cargo 1.96.0-nightly (f298b8c82 2026-02-24)
- clippy 0.1.95 (b90dc1e597 2026-03-04)
Annotations
Check failure on line 142 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
struct `FormModel1` is never constructed
error: struct `FormModel1` is never constructed
--> demo/app/src/app/form_example/mod.rs:142:8
|
142 | struct FormModel1 {
| ^^^^^^^^^^
Check failure on line 135 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
struct `FormModel` is never constructed
error: struct `FormModel` is never constructed
--> demo/app/src/app/form_example/mod.rs:135:8
|
135 | struct FormModel {
| ^^^^^^^^^
Check failure on line 92 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
struct `FormDate1` is never constructed
error: struct `FormDate1` is never constructed
--> demo/app/src/app/form_example/mod.rs:92:8
|
92 | struct FormDate1 {
| ^^^^^^^^^
Check failure on line 84 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
struct `FormDate` is never constructed
error: struct `FormDate` is never constructed
--> demo/app/src/app/form_example/mod.rs:84:8
|
84 | struct FormDate {
| ^^^^^^^^
Check failure on line 68 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
struct `FormValue` is never constructed
error: struct `FormValue` is never constructed
--> demo/app/src/app/form_example/mod.rs:68:8
|
68 | struct FormValue<T: Clone + PartialEq + 'static> {
| ^^^^^^^^^
Check failure on line 48 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
method `set_error` is never used
error: method `set_error` is never used
--> demo/app/src/app/form_example/mod.rs:48:12
|
28 | impl ErrorBuilder {
| ----------------- method in this implementation
...
48 | pub fn set_error(mut self, getter_name: String, message: String) -> Self {
| ^^^^^^^^^
Check failure on line 20 in demo/app/src/app/form_example/mod.rs
github-actions / Nightly Demo/Examples Clippy Output
trait `FormNode` is never used
error: trait `FormNode` is never used
--> demo/app/src/app/form_example/mod.rs:20:7
|
20 | trait FormNode<T: Clone + PartialEq + 'static> {
| ^^^^^^^^
|
= note: `-D dead-code` implied by `-D warnings`
= help: to override `-D warnings` add `#[expect(dead_code)]` or `#[allow(dead_code)]`