Expand description
Synchronization primitives for Netstack3.
Modules§
Structs§
- Mutex
- A
sync::Mutex
assuming lock poisoning will never occur. - RwLock
- A
sync::RwLock
assuming lock poisoning will never occur.
Type Aliases§
- Lock
Guard - Lock guard for access to a
Mutex
. - RwLock
Read Guard - Lock guard for read access to a
RwLock
. - RwLock
Write Guard - Lock guard for write access to a
RwLock
.