Skip to main content

Module mutex

Module mutex 

Source
Expand description

Mutex wrapper multiplataforma

  • native: std::sync::Mutex
  • wasm: std::sync::Mutex (WASM single-threaded, pero thread-safe para compatibilidad)
  • async-tokio: tokio::sync::Mutex

Structsยง

Mutex
A mutual exclusion primitive useful for protecting shared data