検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 31 for return (0.050 sec.)
引数のパース - Rust By Example 日本語版 7150
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... ("error: second argument not an integer"); help(); return; }, }; // parse the command // コマンドをパース ma ...
https://man.plustar.jp/rust/example/std_misc/arg/matching.html - [similar]
dropの延期 - Rust By Example 日本語版 7150
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... to finish, you must call Child::wait , which will return a process::ExitStatus . use std::process::Command; ...
https://man.plustar.jp/rust/example/std_misc/process/wait.html - [similar]
Disambiguating overlapping traits - Rust By Example 日本語版 7150
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... ethod named get() . They might even have different return types! Good news: because each trait implementatio ...
https://man.plustar.jp/rust/example/trait/disambiguating.html - [similar]
Resultのmap - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... ています。 use std::num::ParseIntError; // With the return type rewritten, we use pattern matching without `u ...
https://man.plustar.jp/rust/example/error/result/result_map.html - [similar]
Result - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... r.parse::<i32>() { Ok(number) => number, Err(e) => return Err(e), }; println!("{}", number); Ok(()) } 関連キ ...
https://man.plustar.jp/rust/example/error/result.html - [similar]
クロージャ - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... ferred(i)); // A closure taking no arguments which returns an `i32`. // The return type is inferred. // 引数 ... の型は推論された。 let one = || 1; println!("closure returning one: {}", one()); } 関連キーワード: 関数 , clos ...
https://man.plustar.jp/rust/example/fn/closures.html - [similar]
タプル - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... // Tuples can be used as function arguments and as return values // タプルを関数の引数及び返り値として使用し ...
https://man.plustar.jp/rust/example/primitives/tuples.html - [similar]
refパターン - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... 参照 let Point { x: ref ref_to_x, y: _ } = point; // Return a copy of the `x` field of `point`. // `point`の`x ...
https://man.plustar.jp/rust/example/scope/borrow/ref.html - [similar]
Box, スタックとヒープ - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... x<Point> { // Allocate this point on the heap, and return a pointer to it // このPointをヒープ上に割り当て、 ...
https://man.plustar.jp/rust/example/std/box.html - [similar]
トレイト - Rust By Example 日本語版 7021
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .4.9. 省略 16. トレイト ❱ 16.1. 継承(Derive) 16.2. Returning Traits with dyn 16.3. 演算子のオーバーロード 16 ... tic str) -> Self; // Method signatures; these will return a string. // メソッドのシグネチャ。 // これらの関数 ...
https://man.plustar.jp/rust/example/trait.html - [similar]
PREV 1 2 3 4 NEXT