Struct pool_barrier::Checkpoint [] [src]

pub struct Checkpoint { /* fields omitted */ }

A checkpoint which must be cleared, by calling check_in(). All checkpoints must be cleared before wait() on the parent ActiveBarrier unblocks. Can be sent to other threads. Automatically calls check_in() when dropped.

Methods

impl Checkpoint
[src]

Clears the checkpoint. Calling multiple times does nothing.

Trait Implementations

impl Send for Checkpoint
[src]

impl Drop for Checkpoint
[src]

A method called when the value goes out of scope. Read more