Struct std::sync::BarrierWaitResult1.0.0[][src]

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

Implementations

如果此线程是调用 Barrier::wait() 的 “leader thread”,则返回 true

只有一个线程从其结果返回 true,所有其他线程将返回 false

Examples

use std::sync::Barrier;

let barrier = Barrier::new(1);
let barrier_wait_result = barrier.wait();
println!("{:?}", barrier_wait_result.is_leader());
Run

Trait Implementations

使用给定的格式化程序格式化该值。 Read more

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

从拥有的值中一成不变地借用。 Read more

从拥有的值中借用。 Read more

执行转换。

执行转换。

发生转换错误时返回的类型。

执行转换。

发生转换错误时返回的类型。

执行转换。