検索
Results of 1 - 3 of about 3 for wait (0.016 sec.)
- dropの延期 - Rust By Example 日本語版 11924
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
st By Example 日本語版 dropの延期 If you'd like to wait for a process::Child to finish, you must call Chil...
d::wait , which will return a process::ExitStatus . use st...
p").arg("5").spawn().unwrap(); let _result = child.wait().unwrap(); println!("reached end of main"); } $ r...
ustc wait.rs && ./wait # `wait` keeps running for 5 seconds...
- https://man.plustar.jp/rust/example/std_misc/process/wait.html - [similar]
- スレッド - Rust By Example 日本語版 8036
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
number {}", i); })); } for child in children { // Wait for the thread to finish. Returns a result. // 子ス...
- https://man.plustar.jp/rust/example/std_misc/threads.html - [similar]
- チャネル - Rust By Example 日本語版 7924
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
のスレッドをブロックする。 ids.push(rx.recv()); } // Wait for the threads to complete any remaining work for...
- https://man.plustar.jp/rust/example/std_misc/channels.html - [similar]
PREV
1
NEXT