facet-maybe-mut 0.0.2

Utility crate to abstract away lock primitives in facet
Documentation
1
2
3
4
5
6
7
8
9
//! This crate provides the [`MaybeMut`] that abstracts away smart pointers,
//! locks etc as if they did not exist.
//!
//! This is usually not desirable, because it can easily lead to
//! deadlocks and really bad performance. But sometimes, you simply do not care
//! (for example in simple UI applications)

mod maybe_mut;
pub use maybe_mut::*;