Crate mvar

Source
Expand description

Rust port of Haskell’s MVar.

An Mvar<T> is mutable location that is either empty or contais a value of type T.

Structs§

Mvar
An Mvar (pronounced “em-var”) is a synchronizing variable, used for communication between concurrent threads. It can be thought as a box, which may be empty or full.

Type Aliases§

LockError