検索

phrase: max: clip:
target: order:
Results of 11 - 13 of about 13 for Err (0.030 sec.)
ジェネリックなデータ型 - Rust 日本語版 7372
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... ードをコンパイルしたら、以下のようなエラーが出ます: error[E0369]: binary operation `>` cannot be applied t ... 義したはずなので、このように型不一致エラーが出ます: error[E0308]: mismatched types --> src/main.rs:7:38 | ... ow(unused)] fn main() { enum Result<T, E> { Ok(T), Err(E), } } Result enumは2つの型 T 、 E に関してジェネ ... す: 型 T の値を保持する Ok と、 型 E の値を保持する Err です。この定義により、 Result enumを、成功する(なん ...
https://man.plustar.jp/rust/book/ch10-01-syntax.html - [similar]
メッセージ受け渡しを使ってスレッド間でデータを転送する - Rust 日本語版 7178
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... 、それを含む Ok 値、今回は何もメッセージがなければ、 Err 値です。 メッセージを待つ間にこのスレッドにすること ... ードのコンパイルを試みると、Rustはエラーを返します: error[E0382]: use of moved value: `val` --> src/main.r ...
https://man.plustar.jp/rust/book/ch16-02-message-passing.html - [similar]
シングルスレッドサーバをマルチスレッド化する - Rust 日本語版 6985
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... ck Compiling hello v0.1.0 (file:///projects/hello) error[E0433]: failed to resolve. Use of undeclared typ ... ^^^^ Use of undeclared type or module `ThreadPool` error: aborting due to previous error よろしい!このエラ ... ck Compiling hello v0.1.0 (file:///projects/hello) error[E0599]: no function or associated item named `ne ... avoid this warning, consider using `_size` instead error[E0599]: no method named `execute` found for type ...
https://man.plustar.jp/rust/book/ch20-02-multithreaded.html - [similar]
PREV 1 2 NEXT