[][src]Trait locktree::plug::PlugLifetime

pub trait PlugLifetime<'a> {
    type Type;
}

Associated Types

type Type

Loading content...

Implementors

impl<'a, T> PlugLifetime<'a> for H1MutexLockGuard<T> where
    T: 'static, 
[src]

type Type = MutexGuard<'a, T>

impl<'a, T> PlugLifetime<'a> for H1RwLockReadGuard<T> where
    T: 'static, 
[src]

type Type = RwLockReadGuard<'a, T>

impl<'a, T> PlugLifetime<'a> for H1RwLockWriteGuard<T> where
    T: 'static, 
[src]

type Type = RwLockWriteGuard<'a, T>

Loading content...