2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2023-10-26 16:13:20 +00:00
|
|
|
--> $DIR/union-unsized.rs:2:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | a: str,
|
2020-07-10 22:13:49 +00:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2018-08-08 12:28:26 +00:00
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 22:13:49 +00:00
|
|
|
= help: change the field's type to have a statically known size
|
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | a: &str,
|
2021-06-22 02:07:19 +00:00
|
|
|
| +
|
2020-07-14 19:18:01 +00:00
|
|
|
help: the `Box` type always has a statically known size and allocates its contents in the heap
|
2020-07-10 22:13:49 +00:00
|
|
|
|
|
|
|
|
LL | a: Box<str>,
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++ +
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-10-26 11:36:49 +00:00
|
|
|
error[E0740]: field must implement `Copy` or be wrapped in `ManuallyDrop<...>` to be used in a union
|
2023-12-07 11:56:48 +00:00
|
|
|
--> $DIR/union-unsized.rs:2:5
|
2023-10-26 11:36:49 +00:00
|
|
|
|
|
|
|
|
LL | a: str,
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: union fields must not have drop side-effects, which is currently enforced via either `Copy` or `ManuallyDrop<...>`
|
|
|
|
help: wrap the field type in `ManuallyDrop<...>`
|
|
|
|
|
|
|
|
|
LL | a: std::mem::ManuallyDrop<str>,
|
|
|
|
| +++++++++++++++++++++++ +
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2023-10-26 16:13:20 +00:00
|
|
|
--> $DIR/union-unsized.rs:11:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | b: str,
|
2020-07-10 22:13:49 +00:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2018-08-08 12:28:26 +00:00
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 22:13:49 +00:00
|
|
|
= help: change the field's type to have a statically known size
|
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | b: &str,
|
2021-06-22 02:07:19 +00:00
|
|
|
| +
|
2020-07-14 19:18:01 +00:00
|
|
|
help: the `Box` type always has a statically known size and allocates its contents in the heap
|
2020-07-10 22:13:49 +00:00
|
|
|
|
|
|
|
|
LL | b: Box<str>,
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++ +
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-10-26 16:13:20 +00:00
|
|
|
error[E0740]: field must implement `Copy` or be wrapped in `ManuallyDrop<...>` to be used in a union
|
|
|
|
--> $DIR/union-unsized.rs:11:5
|
2023-10-25 10:49:24 +00:00
|
|
|
|
|
|
|
|
LL | b: str,
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: union fields must not have drop side-effects, which is currently enforced via either `Copy` or `ManuallyDrop<...>`
|
|
|
|
help: wrap the field type in `ManuallyDrop<...>`
|
|
|
|
|
|
|
|
|
LL | b: std::mem::ManuallyDrop<str>,
|
|
|
|
| +++++++++++++++++++++++ +
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-10-25 10:49:24 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0740.
|
|
|
|
For more information about an error, try `rustc --explain E0277`.
|