Trait PlugLifetime

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

Required Associated Types§

Implementors§

Source§

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

Source§

type Type = MutexGuard<'a, T>

Source§

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

Source§

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