Where句
トレイト境界は、{
の直前にwhere
句を導入することでも設けることができます。where
はさらに、型パラメータだけでなく任意の型に対してのみ適用できます。
where
句のほうが有効なケースには例えば
- ジェネリック型とジェネリック境界に別々に制限を加えたほうが明瞭になる場合 つまり、
impl <A: TraitB + TraitC, D: TraitE + TraitF> MyTrait<A, D> for YourType {}
// Expressing bounds with a `where` clause
// `where`を用いてジェネリック境界を設ける。
impl <A, D> MyTrait<A, D> for YourType where
A: TraitB + TraitC,
D: TraitE + TraitF {}
where
句の方が通常の構文より表現力が高い場合
があります。
use std::fmt::Debug; trait PrintInOption { fn print_in_option(self); } // Because we would otherwise have to express this as `T: Debug` or // use another method of indirect approach, this requires a `where` clause: // `where`句を用いない場合、以下と等価な機能を実装するには、 // `<T: Debug>`という形で表現するか、別の直接的でない方法 // を使用するかしなくてはならない。 impl<T> PrintInOption for T where Option<T>: Debug { // We want `Option<T>: Debug` as our bound because that is what's // being printed. Doing otherwise would be using the wrong bound. // プリントされるのが`Some(self)`であるため、この関数の // ジェネリック境界として`Option<T>: Debug`を使用したい。 fn print_in_option(self) { println!("{:?}", Some(self)); } } fn main() { let vec = vec![1, 2, 3]; vec.print_in_option(); }