2020-10-03 17:00:18 +01:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/const-argument-if-length.rs:15:12
|
2020-10-03 17:00:18 +01:00
|
|
|
|
|
|
|
|
LL | pub struct AtLeastByte<T: ?Sized> {
|
2021-03-30 17:56:39 +08:00
|
|
|
| - this type parameter needs to be `std::marker::Sized`
|
2020-10-03 17:00:18 +01:00
|
|
|
LL | value: T,
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= note: only the last field of a struct may have a dynamically sized type
|
|
|
|
= help: change the field's type to have a statically known size
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - pub struct AtLeastByte<T: ?Sized> {
|
|
|
|
LL + pub struct AtLeastByte<T> {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2020-10-03 17:00:18 +01:00
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | value: &T,
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2020-10-03 17:00:18 +01:00
|
|
|
help: the `Box` type always has a statically known size and allocates its contents in the heap
|
|
|
|
|
|
|
|
|
LL | value: Box<T>,
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++++ +
|
2020-10-03 17:00:18 +01:00
|
|
|
|
2021-08-27 18:04:57 +02:00
|
|
|
error: unconstrained generic constant
|
|
|
|
--> $DIR/const-argument-if-length.rs:17:10
|
|
|
|
|
|
|
|
|
LL | pad: [u8; is_zst::<T>()],
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: try adding a `where` bound using this expression: `where [(); is_zst::<T>()]:`
|
|
|
|
|
2020-12-02 17:19:11 +05:30
|
|
|
error: aborting due to 2 previous errors
|
2020-10-03 17:00:18 +01:00
|
|
|
|
2020-12-02 17:19:11 +05:30
|
|
|
For more information about this error, try `rustc --explain E0277`.
|