検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 47 for not (0.040 sec.)
バインディング - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .= 19 => println!("I'm a teen of age {:?}", n), // Nothing bound. Return the result. // マッチしなかった場 ... ), // Match any other number. Some(n) => println!("Not interesting... {}", n), // Match anything else (`N ...
https://man.plustar.jp/rust/example/flow_control/match/binding.html - [similar]
関数 - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... // This is an expression, the `return` keyword is not necessary here // これは式であり、`return`キーワー ...
https://man.plustar.jp/rust/example/fn.html - [similar]
Domain Specific Languages (ドメイン特化言語、DSLs) - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... n() { calculate! { eval 1 + 2 // hehehe `eval` is _not_ a Rust keyword! // `eval`はRustのキーワード *じゃ ...
https://man.plustar.jp/rust/example/macros/dsl.html - [similar]
use宣言 - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... rn crate deeply; // normally, this would exist and not be commented out! use crate::deeply::nested::{ my_ ...
https://man.plustar.jp/rust/example/mod/use.html - [similar]
構造体 - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... is borrowed in {:?}", reference); println!("y is *not* borrowed in {:?}", number); } 参照 struct s 関連キ ...
https://man.plustar.jp/rust/example/scope/lifetime/struct.html - [similar]
Option - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ) } } // This function handles a division that may not succeed // この関数は失敗する割り算を扱うことができ ... // Binding `None` to a variable needs to be type annotated // `None`を変数にアサインする際は、型を明示しな ...
https://man.plustar.jp/rust/example/std/option.html - [similar]
Path - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ch new_path.to_str() { None => panic!("new path is not a valid UTF-8 sequence"), Some(s) => println!("new ...
https://man.plustar.jp/rust/example/std_misc/path.html - [similar]
Dev-dependencies - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... [dev-dependencies] section. These dependencies are not propagated to other packages which depend on this ... ertions::assert_eq; // crate for test-only use. Cannot be used in non-test code. #[test] fn test_add() { ...
https://man.plustar.jp/rust/example/testing/dev_dependencies.html - [similar]
エイリアス - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... nd = 5 as u64_t; let inches: Inch = 2 as u64_t; // Note that type aliases *don't* provide any extra type ... safety, because // aliases are *not* new types // 型のエイリアスは、元の型をより型安全 ...
https://man.plustar.jp/rust/example/types/alias.html - [similar]
値の凍結 - Rust By Example 日本語版 6794
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... `はスコープを抜ける } // Ok! `_mutable_integer` is not frozen in this scope // OK! `_mutable_integer`はこ ...
https://man.plustar.jp/rust/example/variable_bindings/freeze.html - [similar]
PREV 1 2 3 4 5 NEXT