[][src]Trait stdext::sync::mutex::MutexExt

pub trait MutexExt<T> {
    fn force_lock(&self) -> MutexGuard<T>;
}

Extension trait with useful methods for std::sync::Mutex.

Required methods

fn force_lock(&self) -> MutexGuard<T>

Shorthand for mutex.lock().unwrap() with a better panic message.

This method is intended to be used in situations where poisoned locks are considered an exceptional situation and should always result in panic.

Examples

use std::sync::Mutex;
use stdext::prelude::*;

let lock = Mutex::new(1);

let n = lock.force_lock();
assert_eq!(*n, 1);
Loading content...

Implementations on Foreign Types

impl<T> MutexExt<T> for Mutex<T>[src]

Loading content...

Implementors

Loading content...