検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 193 for box (0.005 sec.)
メソッド - Rust By Example 日本語版 6584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... `Pair`はヒープ上の整数を2つ保持する。 struct Pair(Box<i32>, Box<i32>); impl Pair { // This method "consu ... 出せる。 square.translate(1.0, 1.0); let pair = Pair(Box::new(1), Box::new(2)); pair.destroy(); // Error! P ...
https://man.plustar.jp/rust/example/fn/methods.html - [similar]
テストケース: 連結リスト - Rust By Example 日本語版 6399
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... し、次の要素へのポインタを保持するタプル。 Cons(u32, Box<List>), // Nil: A node that signifies the end of t ... 体も、その第2要素もどちらもlist型である。 Cons(elem, Box::new(self)) } // Return the length of the list // ...
https://man.plustar.jp/rust/example/custom_types/enum/testcase_linked_list.html - [similar]
要素の捕捉 - Rust By Example 日本語版 5758
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... A non-copy type. // コピー不可能な型 let movable = Box::new(3); // `mem::drop` requires `T` so this must ... ウトを解除しても // エラーが発生しなくなる。 } 参照 Box and std::mem::drop 関連キーワード: count , let , m ...
https://man.plustar.jp/rust/example/fn/closures/capture.html - [similar]
標準ライブラリの型 - Rust By Example 日本語版 5758
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... ドリング用の Result<i32, i32> ヒープ上資源のポインタ Box<i32> 参照 基本データ型 , std ライブラリ 関連キーワ ...
https://man.plustar.jp/rust/example/std.html - [similar]
メモリ解放 - Rust By Example 日本語版 5671
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... ことです。 Drop トレイトを実装している型の例としては Box 、 Vec 、 String 、 File 、 Process 等があげられま ...
https://man.plustar.jp/rust/example/trait/drop.html - [similar]
エラーをラップする - Rust By Example 日本語版 5584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... vy Ayu Rust By Example 日本語版 エラーをラップする Boxする方法の代替として、エラーを自前のエラー型としてラ ...
https://man.plustar.jp/rust/example/error/multiple_error_types/wrap_error.html - [similar]
Rust By Example 日本語版 5584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... し、次の要素へのポインタを保持するタプル。 Cons(u32, Box<List>), // Nil: A node that signifies the end of t ... 体も、その第2要素もどちらもlist型である。 Cons(elem, Box::new(self)) } // Return the length of the list // ...
https://man.plustar.jp/rust/example/print.html - [similar]
refパターン - Rust By Example 日本語版 5584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... を含むミュータブルなタプル let mut mutable_tuple = (Box::new(5u32), 3u32); { // Destructure `mutable_tuple ...
https://man.plustar.jp/rust/example/scope/borrow/ref.html - [similar]
panic! - Rust By Example 日本語版 5584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... Heap allocated integer // ヒープ上の整数 let _x = Box::new(0i32); // This operation will trigger a task ...
https://man.plustar.jp/rust/example/std/panic.html - [similar]
Testcase: map-reduce - Rust By Example 日本語版 5584
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 取り出す 18.4.2. エラー型を定義する 18.4.3. エラーをBoxする 18.4.4. ?の他の活用法 18.4.5. エラーをラップする ... ultをイテレートする 19. 標準ライブラリの型 ❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4 ... ary provides great threading primitives out of the box. These, combined with Rust's concept of Ownership ...
https://man.plustar.jp/rust/example/std_misc/threads/testcase_mapreduce.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT