pub const fn const_rwlock<T>(value: T) -> RwLock<T>
Expand description

Creates a new instance of an RwLock<T> which is unlocked.

This allows creating a RwLock<T> in a constant context on stable Rust.