Type Alias Arcm

Source
pub type Arcm<T> = Arc<Mutex<T>>;
Expand description

Type alias wrapping a locked, thread-safe structure with a [Mutex] in an [Arc]

Aliased Typeยง

struct Arcm<T> { /* private fields */ }