mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
53 lines
1.1 KiB
Text
53 lines
1.1 KiB
Text
error: missing documentation for a struct
|
|
--> $DIR/missing_doc_impl.rs:13:1
|
|
|
|
|
LL | / struct Foo {
|
|
LL | | a: isize,
|
|
LL | | b: isize,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::missing-docs-in-private-items` implied by `-D warnings`
|
|
|
|
error: missing documentation for a struct field
|
|
--> $DIR/missing_doc_impl.rs:14:5
|
|
|
|
|
LL | a: isize,
|
|
| ^^^^^^^^
|
|
|
|
error: missing documentation for a struct field
|
|
--> $DIR/missing_doc_impl.rs:15:5
|
|
|
|
|
LL | b: isize,
|
|
| ^^^^^^^^
|
|
|
|
error: missing documentation for a struct field
|
|
--> $DIR/missing_doc_impl.rs:20:5
|
|
|
|
|
LL | b: isize,
|
|
| ^^^^^^^^
|
|
|
|
error: missing documentation for an associated function
|
|
--> $DIR/missing_doc_impl.rs:67:5
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | | Foo { a: 0, b: 0 }
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: missing documentation for an associated function
|
|
--> $DIR/missing_doc_impl.rs:70:5
|
|
|
|
|
LL | fn bar() {}
|
|
| ^^^^^^^^^^^
|
|
|
|
error: missing documentation for an associated function
|
|
--> $DIR/missing_doc_impl.rs:78:5
|
|
|
|
|
LL | / fn foo2() -> u32 {
|
|
LL | | 1
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|