有没有办法解决未使用的类型参数?

时间:2015-01-24 07:48:39

标签: rust traits 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更改为关联类型来解决,但这会阻止我进行多重调度。

1 个答案:

答案 0 :(得分:7)

结构中未使用的类型参数可以使用PhantomData

struct Struct<U> {
    _marker: PhantomData<U>,
}

impl<U> Struct<U> {
    fn example<T>(&self)
    where
        U: Trait<T>,
    {
        // use `T` and `U`
    }
}