2023-07-15 12:15:55 +00:00
|
|
|
error: type could implement `Copy`; consider adding `impl Copy`
|
2023-05-10 12:35:00 +00:00
|
|
|
--> $DIR/issue-111359.rs:7:5
|
|
|
|
|
|
|
|
|
LL | pub struct BarPub;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2023-07-15 12:15:55 +00:00
|
|
|
--> $DIR/issue-111359.rs:2:8
|
2023-05-10 12:35:00 +00:00
|
|
|
|
|
2023-07-15 12:15:55 +00:00
|
|
|
LL | #[deny(missing_copy_implementations)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-05-10 12:35:00 +00:00
|
|
|
|
2023-07-15 12:15:55 +00:00
|
|
|
error: type does not implement `Debug`; consider adding `#[derive(Debug)]` or a manual implementation
|
2023-05-10 12:35:00 +00:00
|
|
|
--> $DIR/issue-111359.rs:7:5
|
|
|
|
|
|
|
|
|
LL | pub struct BarPub;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2023-07-15 12:15:55 +00:00
|
|
|
--> $DIR/issue-111359.rs:1:8
|
2023-05-10 12:35:00 +00:00
|
|
|
|
|
2023-07-15 12:15:55 +00:00
|
|
|
LL | #[deny(missing_debug_implementations)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-05-10 12:35:00 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|