facet_maybe_mut/lib.rs
1//! This crate provides the [`MaybeMut`] that abstracts away smart pointers,
2//! locks etc as if they did not exist.
3//!
4//! This is usually not desirable, because it can easily lead to
5//! deadlocks and really bad performance. But sometimes, you simply do not care
6//! (for example in simple UI applications)
7
8mod maybe_mut;
9pub use maybe_mut::*;