2019-10-12 18:53:11 +00:00
|
|
|
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
|
2019-10-26 15:28:02 +00:00
|
|
|
--> $DIR/impl[t]-foreign-for-fundamental[t].rs:10:6
|
2019-10-12 18:53:11 +00:00
|
|
|
|
|
|
|
|
LL | impl<T> Remote for Box<T> {
|
2019-10-24 00:06:01 +00:00
|
|
|
| ^ type parameter `T` must be used as the type parameter for some local type
|
2019-10-12 18:53:11 +00:00
|
|
|
|
|
2020-10-17 09:56:54 +00:00
|
|
|
= note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
|
2019-10-12 18:53:11 +00:00
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-10-12 18:53:11 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0210`.
|