2019-09-18 20:14:33 +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[fundamental[t]]-for-foreign.rs:10:6
|
2019-09-18 20:14:33 +00:00
|
|
|
|
|
|
|
|
LL | impl<T> Remote1<Box<T>> for u32 {
|
2019-10-12 21:31:23 +00:00
|
|
|
| ^ type parameter `T` must be used as the type parameter for some local type
|
2019-09-18 20:14:33 +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-09-18 20:14:33 +00:00
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
|
|
|
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[fundamental[t]]-for-foreign.rs:14:10
|
2019-09-18 20:14:33 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a, T> Remote1<&'a T> for u32 {
|
2019-10-12 21:31:23 +00:00
|
|
|
| ^ type parameter `T` must be used as the type parameter for some local type
|
2019-09-18 20:14:33 +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-09-18 20:14:33 +00:00
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0210`.
|