検索

phrase: max: clip:
target: order:
Results of 1 - 2 of about 2 for Animal (0.006 sec.)
Returning Traits with dyn - Rust By Example 日本語版 11228
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... . Unlike other languages, if you have a trait like Animal , you can't write a function that returns Animal , ... ly, our functions return a Box which contains some Animal . A box is just a reference to some memory in the ... mpiler can guarantee it points to a heap-allocated Animal , we can return a trait from our function! Rust tr ... the return type with the dyn keyword, e.g. Box<dyn Animal> . struct Sheep {} struct Cow {} trait Animal { // ...
https://man.plustar.jp/rust/example/trait/dyn.html - [similar]
トレイト - Rust By Example 日本語版 7485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... るデータ型に実装することができます。以下の例ではまず Animal というメソッドの集合を定義し、その後 Animal トレイ ... Sheep というデータ型に対して実装します。これにより Animal のメソッドを Sheep が使用することが可能になります。 ... ct Sheep { naked: bool, name: &'static str } trait Animal { // Associated function signature; `Self` refers ... .name); self.naked = true; } } } // Implement the `Animal` trait for `Sheep`. // `Animal`というトレイトを`Sh ...
https://man.plustar.jp/rust/example/trait.html - [similar]
PREV 1 NEXT