検索
Results of 1 - 10 of about 10 for names (0.023 sec.)
- for と range - Rust By Example 日本語版 14123
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
行後もコレクションを再利用できます。 fn main() { let names = vec!["Bob", "Frank", "Ferris"]; for name in name...
is" _ => println!("Hello {}", name), } } println!("names: {:?}", names); } into_iter - この関数はコレクショ...
ションを再利用することはできません。 fn main() { let names = vec!["Bob", "Frank", "Ferris"]; for name in name...
"), _ => println!("Hello {}", name), } } println!("names: {:?}", names); // FIXME ^ Comment out this line }...
- https://man.plustar.jp/rust/example/flow_control/for.html - [similar]
- Rust By Example 日本語版 9546
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
n `enum` to classify a web event. Note how both // names and type information together specify the variant:...
n, Soldier, } fn main() { // Explicitly `use` each name so they are available without // `use`することで絶対...
行後もコレクションを再利用できます。 fn main() { let names = vec!["Bob", "Frank", "Ferris"]; for name in name...
is" _ => println!("Hello {}", name), } } println!("names: {:?}", names); } into_iter - この関数はコレクショ...
- https://man.plustar.jp/rust/example/print.html - [similar]
- Raw identifiers - Rust By Example 日本語版 8777
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
and so you cannot use them in places like variable names, function names, and other places. Raw identifiers...
- https://man.plustar.jp/rust/example/compatibility/raw_identifiers.html - [similar]
- 列挙型 - Rust By Example 日本語版 8223
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
n, // These likewise tie `u32` tuples to different names: color models. // 以下の値は名前と`u32`のタプルをペ...
- https://man.plustar.jp/rust/example/flow_control/match/destructuring/destructure... - [similar]
- 列挙型 - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
n `enum` to classify a web event. Note how both // names and type information together specify the variant:...
- https://man.plustar.jp/rust/example/custom_types/enum.html - [similar]
- 識別子 - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
e `ident` designator is used for variable/function names. // このマクロは`ident`識別子に対応する値を引数とし...
- https://man.plustar.jp/rust/example/macros/designators.html - [similar]
- 構造体の場合 - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
h private fields cannot be constructed using field names. // Error! `ClosedBox` has private fields // プライ...
- https://man.plustar.jp/rust/example/mod/struct_visibility.html - [similar]
- ライフタイム - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
────────────────────────────────────┘ Note that no names or types are assigned to label lifetimes. This res...
- https://man.plustar.jp/rust/example/scope/lifetime.html - [similar]
- Unit testing - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
] mod tests { // Note this useful idiom: importing names from outer (for mod tests) scope. use super::*; #[...
- https://man.plustar.jp/rust/example/testing/unit_testing.html - [similar]
- impl Trait - Rust By Example 日本語版 8098
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
nd filter easier. Because closure types don't have names, you can't write out an explicit return type if yo...
- https://man.plustar.jp/rust/example/trait/impl_trait.html - [similar]
PREV
1
NEXT