2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2022-06-30 02:33:18 +00:00
|
|
|
--> $DIR/union-unsized.rs:5: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
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2022-06-30 02:33:18 +00:00
|
|
|
--> $DIR/union-unsized.rs:13: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
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|