検索
Results of 1 - 1 of about 1 for PhantomTuple (0.003 sec.)
- 幽霊型パラメータ - Rust By Example 日本語版 9414
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ルを作成します。 use std::marker::PhantomData; // A phantom tuple struct which is generic over `A` with hidden para...
. // 比較演算子(`==`)での比較を可能にする。 struct PhantomTuple<A, B>(A,PhantomData<B>); // A phantom type struct...
ere, `f32` and `f64` are the hidden parameters. // PhantomTuple type specified as `<char, f32>`. // <char, f32>と型...
宣言されたPhantomTupleを作成 let _tuple1: PhantomTuple<char, f32> = Phanto...
- https://man.plustar.jp/rust/example/generics/phantom.html - [similar]
PREV
1
NEXT