検索
Results of 1 - 3 of about 3 for greeting (0.048 sec.)
- 捕捉時の型推論 - Rust By Example 日本語版 11924
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
i32) -> i32 { f(3) } fn main() { use std::mem; let greeting = "hello"; // A non-copy type. // `to_owned` creat...
l = "goodbye".to_owned(); // Capture 2 variables: `greeting` by reference and // `farewell` by value. // 変数を...
2つ補足。`greeting`は参照を、 // `farewell`は値をそれぞれ捕捉する。 l...
et diary = || { // `greeting` is by reference: requires `Fn`. // `greeting`は参...
- https://man.plustar.jp/rust/example/fn/closures/input_parameters.html - [similar]
- Rust By Example 日本語版 8129
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
i32) -> i32 { f(3) } fn main() { use std::mem; let greeting = "hello"; // A non-copy type. // `to_owned` creat...
l = "goodbye".to_owned(); // Capture 2 variables: `greeting` by reference and // `farewell` by value. // 変数を...
2つ補足。`greeting`は参照を、 // `farewell`は値をそれぞれ捕捉する。 l...
et diary = || { // `greeting` is by reference: requires `Fn`. // `greeting`は参...
- https://man.plustar.jp/rust/example/print.html - [similar]
- Supertraits - Rust By Example 日本語版 7813
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
t_username(&self) -> String; } fn comp_sci_student_greeting(student: &dyn CompSciStudent) -> String { format!(...
- https://man.plustar.jp/rust/example/trait/supertraits.html - [similar]
PREV
1
NEXT