Skip to content

22 allow skip input validation #36

22 allow skip input validation

22 allow skip input validation #36

GitHub Actions / Clippy Output succeeded Apr 23, 2024 in 0s

Clippy Output

4 warnings

Details

Results

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

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check warning on line 200 in src/menu/input.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

missing documentation for a method

warning: missing documentation for a method
   --> src/menu/input.rs:200:5
    |
200 |     pub fn start(&self) -> Box<String> {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 189 in src/menu/input.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

missing documentation for an associated function

warning: missing documentation for an associated function
   --> src/menu/input.rs:189:5
    |
189 |     pub fn new(title: &str, req: Requirements) -> Self {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 181 in src/menu/input.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

missing documentation for a struct

warning: missing documentation for a struct
   --> src/menu/input.rs:181:1
    |
181 | pub struct Input {
    | ^^^^^^^^^^^^^^^^
    |
note: the lint level is defined here
   --> src/lib.rs:76:9
    |
76  | #![warn(missing_docs)]
    |         ^^^^^^^^^^^^

Check warning on line 316 in src/menu/input.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

methods `has_path_requirement` and `has_regex_requirement` are never used

warning: methods `has_path_requirement` and `has_regex_requirement` are never used
   --> src/menu/input.rs:316:8
    |
188 | impl Input {
    | ---------- methods in this implementation
...
316 |     fn has_path_requirement(&self) -> bool {
    |        ^^^^^^^^^^^^^^^^^^^^
...
325 |     fn has_regex_requirement(&self) -> bool {
    |        ^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `#[warn(dead_code)]` on by default