or_poisoned 0.1.0

Unwrap std lock guards in a semantic way.
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 3 items with examples
  • Size
  • Source code size: 2.92 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 174.03 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • leptos-rs/leptos
    18265 747 75
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • benwis gbj

Provides a simple trait that unwraps the locks provide by [std::sync::RwLock].

In every case, this is the same as calling .expect("lock poisoned"). However, it does not use .unwrap() or .expect(), which makes it easier to distinguish from other forms of unwrapping when reading code.

use or_poisoned::OrPoisoned;
use std::sync::RwLock;

let lock = RwLock::new(String::from("Hello!"));

let read = lock.read().or_poisoned();
// this is identical to
let read = lock.read().unwrap();