Skip to content

Test form - #507

Draft
szagi3891 wants to merge 3 commits into
masterfrom
test-form
Draft

Test form#507
szagi3891 wants to merge 3 commits into
masterfrom
test-form

propagowanie błędów

028b9ee
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Stable Demo/Examples Clippy Output failed Mar 5, 2026 in 0s

Stable 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.94.0 (4a4ef493e 2026-03-02)
  • cargo 1.94.0 (85eff7c80 2026-01-15)
  • clippy 0.1.94 (4a4ef493e3 2026-03-02)

Annotations

Check failure on line 142 in demo/app/src/app/form_example/mod.rs

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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

See this annotation in the file changed.

@github-actions github-actions / Stable 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)]`