pub struct BarrierWaitResult(_);
A result returned from wait.
Currently this opaque structure only has one method, .is_leader()
`.is_leader(). Only one thread will receive a result that will return
`. Only
one thread will receive a result that will return true
`true` from this function.
Methods
Returns whether this thread from wait
`wait` is the "leader thread".
Only one thread will have true
`truereturned from their result, all other threads will have
` returned from their result, all other
threads will have false
`false` returned.
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).
Search functions by type signature (e.g.
vec -> usize
)