#bounds #struct #reference #lock #derived #pass #guard

bound

Wrap lock guards and other structs along with the locks or other data they are derived by shared reference from, in a struct you can pass around and store anywhere

9 releases (4 breaking)

0.5.0 Nov 30, 2022
0.4.1 Oct 30, 2022
0.3.1 Oct 17, 2022
0.2.3 Oct 15, 2022
0.1.0 Oct 11, 2022

#1014 in Concurrency

23 downloads per month
Used in orchidlang

MIT license

18KB
259 lines

Bound

A minimal crate to encapsulate the act of deriving a struct from a reference. Notably useful for wrapping LockGuard instances obtained from Arc<RwLock<T>> for example, but essentially works with anything that has a similar relation as the LockGuard does to the RwLock.

Usage

This and all other examples are also available on https:://docs.rs/bound

use std::sync::{Arc, RwLock};
use bound::Bound;

let shared = Arc::new(RwLock::new(1));
let mut writer = Bound::try_new(shared.clone(), |a| a.write()).expect("Failed to lock");
*writer = 2;

// writer now has the following type
type Writer = Bound<RwLockWriteGuard<'static, usize>, Arc<RwLock<usize>>>

You can now safely pass writer around and put it in structs, something you couldn't do with an RwLockWriteGuard by default because it's derived from the local reference to its lock.

1.0?

1.0 means robust, verified and ready for production use. This package is as robust as I can make it, but it uses unsafe code, so I'd like at least 5 experienced Rust developers to approve of it. If you're comfortable with unsafe code and you believe the code to be secure, please send me an email.

As always, if you found a way to break it please open an issue with a reproducible example.

Authoritative Approvals: 1

No runtime deps