検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 193 for Example (0.024 sec.)
if let - Rust By Example 日本語版 9843
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 if let 列挙型をマッチさせるとき、場合によ ... if let can be used to match any enum value: // Our example enum enum Foo { Bar, Baz, Qux(u32) } fn main() { / ... / Create example variables let a = Foo::Bar; let b = Foo::Baz; let ... h has a value // Similar to Some() in the previous example if let Foo::Qux(value) = c { println!("c is {}", v ...
https://man.plustar.jp/rust/example/flow_control/if_let.html - [similar]
Dev-dependencies - Rust By Example 日本語版 9506
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Development dependencies Sometimes there ... is a need to have dependencies for tests (or examples, or benchmarks) only. Such dependencies are added ... er packages which depend on this package. One such example is pretty_assertions , which extends standard asse ... ert_ne! macros, to provide colorful diff. One such example is using a crate that extends standard assert! mac ...
https://man.plustar.jp/rust/example/testing/dev_dependencies.html - [similar]
Introduction - Rust By Example 日本語版 8485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Rust by Example 日本語版 Rust は安全性、速 ... リ安全であることが、これを可能にしています。 Rust by Example(RBE)はRustの実行可能なサンプルスクリプト集で、ここ ... ラリ , Introduction , エラー , Result , Rust , By , Example , 標準 , クレート ...
https://man.plustar.jp/rust/example/index.html - [similar]
impl Trait - Rust By Example 日本語版 8485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 impl Trait impl Trait can be used in two ... using impl Trait as the type of the argument. For example, consider the following code: fn parse_csv_documen ... y>(std::io::empty()) will not work with the second example As a return type If your function returns a type t ... rtantly, some Rust types can't be written out. For example, every closure has its own unnamed concrete type. ...
https://man.plustar.jp/rust/example/trait/impl_trait.html - [similar]
Raw identifiers - Rust By Example 日本語版 7801
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Raw identifiers Rust, like many programmi ... me as a keyword introduced in a newer edition. For example, consider a crate foo compiled with the 2015 editi ... 関連キーワード: identifiers , 関数 , Result , Rust , Example , By , エラー , try , Option , テストケース ...
https://man.plustar.jp/rust/example/compatibility/raw_identifiers.html - [similar]
Supertraits - Rust By Example 日本語版 7801
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Supertraits Rust doesn't have "inheritanc ... a trait as being a superset of another trait. For example: trait Person { fn name(&self) -> String; } // Per ... 連キーワード: 関数 , Supertraits , trait , Result , Example , Rust , By , Student , self , エラー ...
https://man.plustar.jp/rust/example/trait/supertraits.html - [similar]
Diverging functions - Rust By Example 日本語版 7464
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Diverging functions Diverging functions n ... () type, which has exactly one possible value. For example, this function returns as usual, although there is ... Diverging , 関数 , never , let , Result , return , Example , By ...
https://man.plustar.jp/rust/example/fn/diverging.html - [similar]
コメント - Rust By Example 日本語版 7116
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 コメント あらゆるプログラムにはコメントが ... スのドキュメントになります fn main() { // This is an example of a line comment // There are two slashes at the ... 連キーワード: コメント , 関数 , Result , By , Rust , Example , comments , comment , エラー , ドキュメンテーショ ...
https://man.plustar.jp/rust/example/hello/comment.html - [similar]
Documentation testing - Rust By Example 日本語版 7116
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 Documentation testing The primary way of ... b } /// Usually doc comments may include sections "Examples", "Panics" and "Failures". /// /// The next funct ... ion divides two numbers. /// /// # Examples /// /// ``` /// let result = doccomments::div(10, ... main purpose of documentation tests is to serve as examples that exercise the functionality, which is one of ...
https://man.plustar.jp/rust/example/testing/doc_testing.html - [similar]
安全でない操作 - Rust By Example 日本語版 7116
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Playpen Light (default) Rust Coal Navy Ayu Rust By Example 日本語版 安全でない操作 この章の内容を見る前に、 公 ... ensure correctness instead of the compiler's. One example of this is std::slice::from_raw_parts which will c ... : 操作 , slice , 関数 , let , Result , By , Rust , Example , unsafe , ポインタ ...
https://man.plustar.jp/rust/example/unsafe.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT