2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/union-unsized.rs:4:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | a: str,
|
2020-07-10 17:13:49 -05:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `str`
|
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 17:13:49 -05: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,
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | a: Box<str>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/union-unsized.rs:12:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | b: str,
|
2020-07-10 17:13:49 -05:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `str`
|
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 17:13:49 -05: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,
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | b: Box<str>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|