2022-10-23 13:18:45 +00:00
|
|
|
error: mixed usage of pub and non-pub fields
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/partial_pub_fields.rs:10:9
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | pub paths: HashMap<u32, String>,
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= help: consider using private field here
|
|
|
|
= note: `-D clippy::partial-pub-fields` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::partial_pub_fields)]`
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
error: mixed usage of pub and non-pub fields
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/partial_pub_fields.rs:17:9
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | b: u8,
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: consider using public field here
|
|
|
|
|
|
|
|
error: mixed usage of pub and non-pub fields
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/partial_pub_fields.rs:21:27
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | pub struct Point(i32, pub i32);
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= help: consider using private field here
|
|
|
|
|
|
|
|
error: mixed usage of pub and non-pub fields
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/partial_pub_fields.rs:26:9
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | pub pos: u32,
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= help: consider using private field here
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|