導出(Derive)
コンパイラには、#[derive]
アトリビュートを用いることで型に対して特定のトレイトの標準的な実装を提供する機能があります。より複雑なことを行わせたい場合には、同名のトレイトを手動で実装することも可能です。
以下はderive可能なトレイトの一覧です。
- 型の比較に関連するトレイト:
Eq
,PartialEq
,Ord
,PartialOrd
Clone
, これはコピーによって&T
からT
を作成するトレイトCopy
, to give a type 'copy semantics' instead of 'move semantics'.Hash
, これは&T
からハッシュ値を計算するためのトレイトDefault
, これは空っぽのインスタンスを作成するためのトレイトDebug
, これは{:?}
フォーマッタを利用して値をフォーマットするためのトレイト
// `Centimeters`, a tuple struct that can be compared // `Centimeters`は比較可能なタプルになる #[derive(PartialEq, PartialOrd)] struct Centimeters(f64); // `Inches`, a tuple struct that can be printed // `Inches`はプリント可能なタプルになる #[derive(Debug)] struct Inches(i32); impl Inches { fn to_centimeters(&self) -> Centimeters { let &Inches(inches) = self; Centimeters(inches as f64 * 2.54) } } // `Seconds`, a tuple struct with no additional attributes // `Seconds`には特にアトリビュートを付け加えない。 struct Seconds(i32); fn main() { let _one_second = Seconds(1); // Error: `Seconds` can't be printed; it doesn't implement the `Debug` trait // エラー: `Seconds`はプリントできない。これは`Debug`トレイトを実装していないため //println!("One second looks like: {:?}", _one_second); // TODO ^ Try uncommenting this line // TODO ^ この行をアンコメントしてみましょう。 // Error: `Seconds` can't be compared; it doesn't implement the `PartialEq` trait // エラー: `Seconds`は比較できない。これは`PartialEq`トレイトを実装していないため //let _this_is_true = (_one_second == _one_second); // TODO ^ Try uncommenting this line // TODO ^ この行をアンコメントしてみましょう let foot = Inches(12); println!("One foot equals {:?}", foot); let meter = Centimeters(100.0); let cmp = if foot.to_centimeters() < meter { "smaller" } else { "bigger" }; println!("One foot is {} than one meter.", cmp); }