2019-04-30 14:38:17 +02:00
error[E0378]: the trait `DispatchFromDyn` may only be implemented for structs containing the field being coerced, ZST fields with 1 byte alignment, and nothing else
2018-12-25 08:56:47 -07:00
--> $DIR/invalid_dispatch_from_dyn_impls.rs:10:1
2018-10-03 23:40:21 -04:00
|
LL | / impl<T, U> DispatchFromDyn<WrapperWithExtraField<U>> for WrapperWithExtraField<T>
LL | | where
LL | | T: DispatchFromDyn<U>,
2019-03-09 15:03:44 +03:00
LL | | {}
2018-10-03 23:40:21 -04:00
| |__^
|
= note: extra field `1` of type `i32` is not allowed
error[E0378]: implementing the `DispatchFromDyn` trait requires multiple coercions
2018-12-25 08:56:47 -07:00
--> $DIR/invalid_dispatch_from_dyn_impls.rs:21:1
2018-10-03 23:40:21 -04:00
|
LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<MultiplePointers<U>> for MultiplePointers<T>
LL | | where
LL | | T: Unsize<U>,
2019-03-09 15:03:44 +03:00
LL | | {}
2018-10-03 23:40:21 -04:00
| |__^
|
= note: the trait `DispatchFromDyn` may only be implemented for a coercion between structures with a single field being coerced
2018-10-09 01:13:07 -04:00
= note: currently, 2 fields need coercions: `ptr1` (`*const T` to `*const U`), `ptr2` (`*const T` to `*const U`)
2018-10-03 23:40:21 -04:00
error[E0378]: the trait `DispatchFromDyn` may only be implemented for a coercion between structures with a single field being coerced, none found
2018-12-25 08:56:47 -07:00
--> $DIR/invalid_dispatch_from_dyn_impls.rs:31:1
2018-10-03 23:40:21 -04:00
|
LL | impl<T: ?Sized, U: ?Sized> DispatchFromDyn<NothingToCoerce<T>> for NothingToCoerce<U> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-10-26 01:09:33 -04:00
error[E0378]: structs implementing `DispatchFromDyn` may not have `#[repr(packed)]` or `#[repr(C)]`
2018-12-25 08:56:47 -07:00
--> $DIR/invalid_dispatch_from_dyn_impls.rs:37:1
2018-10-26 01:09:33 -04:00
|
LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<HasReprC<U>> for HasReprC<T>
LL | | where
LL | | T: Unsize<U>,
2019-03-09 15:03:44 +03:00
LL | | {}
2018-10-26 01:09:33 -04:00
| |__^
2019-04-30 14:38:17 +02:00
error[E0378]: the trait `DispatchFromDyn` may only be implemented for structs containing the field being coerced, ZST fields with 1 byte alignment, and nothing else
--> $DIR/invalid_dispatch_from_dyn_impls.rs:46:1
|
LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<OverAligned<U>> for OverAligned<T>
LL | | where
LL | | T: Unsize<U>,
LL | | {}
| |__^
|
= note: extra field `1` of type `OverAlignedZst` is not allowed
error: aborting due to 5 previous errors
2018-10-03 23:40:21 -04:00
For more information about this error, try `rustc --explain E0378`.