有没有办法解决未使用的类型参数?
Is there any way to work around an unused type parameter?
代码:
trait Trait<T> {}
struct Struct<U>;
impl<T, U: Trait<T>> Struct<U> {}
错误:
error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predicates
--> src/main.rs:5:6
|
5 | impl<T, U: Trait<T>> Struct<U> {}
| ^ unconstrained type parameter
似乎RFC 447禁止这种模式;有什么办法可以解决这个问题吗?我认为可以通过将 T
更改为关联类型来解决,但这会阻止我进行多调度。
结构中未使用的类型参数可以使用PhantomData
:
struct Struct<U> {
_marker: PhantomData<U>,
}
impl<U> Struct<U> {
fn example<T>(&self)
where
U: Trait<T>,
{
// use `T` and `U`
}
}
代码:
trait Trait<T> {}
struct Struct<U>;
impl<T, U: Trait<T>> Struct<U> {}
错误:
error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predicates
--> src/main.rs:5:6
|
5 | impl<T, U: Trait<T>> Struct<U> {}
| ^ unconstrained type parameter
似乎RFC 447禁止这种模式;有什么办法可以解决这个问题吗?我认为可以通过将 T
更改为关联类型来解决,但这会阻止我进行多调度。
结构中未使用的类型参数可以使用PhantomData
:
struct Struct<U> {
_marker: PhantomData<U>,
}
impl<U> Struct<U> {
fn example<T>(&self)
where
U: Trait<T>,
{
// use `T` and `U`
}
}