検索
Results of 1 - 1 of about 1 for GenericVal (0.004 sec.)
- メソッド - Rust By Example 日本語版 9414
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
struct S; // Concrete type `S` // 具象型`S` struct GenericVal<T>(T); // Generic type `GenericVal` // ジェネリック...
型`GenericVal` // impl of GenericVal where we explicitly specify...
type parameters: // 型パラメータを指定したうえで、GenericValにメソッドを実装 impl GenericVal<f32> {} // Specify...
`f32` // `f32`の場合のメソッド impl GenericVal<S> {} // Specify `S` as defined above // 上で定義し...
- https://man.plustar.jp/rust/example/generics/impl.html - [similar]
PREV
1
NEXT