Struct std::sync::BarrierWaitResult
1.0.0 · source · pub struct BarrierWaitResult(_);
Expand description
当 Barrier
中的所有线程都汇合时,Barrier::wait()
将返回 BarrierWaitResult
。
Examples
use std::sync::Barrier;
let barrier = Barrier::new(1);
let barrier_wait_result = barrier.wait();
Run