7 releases
0.3.0 | Mar 18, 2019 |
---|---|
0.2.4 | Mar 12, 2019 |
0.2.2 | Feb 25, 2019 |
0.1.0 | Feb 13, 2019 |
#797 in Concurrency
21 downloads per month
27KB
692 lines
Inert
This is a mechanism to access non-Sync
values in a Sync
way.
How is this sound?
When the user creates a &Inert<T>
value from a &T
, they must swear on the
holy baguette that they won't use the T
directly until all the Inert
wrappers go away, while the various implementations of the Neutralize
trait make sure that the non-Sync
behaviour of the T
cannot be observed
through the wrapper.
How can I help?
Improve documentation, test the crate, make use of it.
lib.rs
:
Inert
lets you access non-Sync
data in Sync
context, hiding from the
user anything that may not be sound to use when the value is shared.
Dependencies
~2MB
~46K SLoC