[][src]Struct rpool::PoolGuard

pub struct PoolGuard<Y: Send + Sync + 'static, T: Poolable<Y> + 'static> { /* fields omitted */ }

Trait Implementations

impl<Y: Send + Sync + Debug + 'static, T: Poolable<Y> + Debug + 'static> Debug for PoolGuard<Y, T>[src]

impl<Y: Send + Sync + 'static, T: Poolable<Y> + 'static> Deref for PoolGuard<Y, T>[src]

type Target = T

The resulting type after dereferencing.

impl<Y: Send + Sync + 'static, T: Poolable<Y> + 'static> DerefMut for PoolGuard<Y, T>[src]

impl<Y: Send + Sync + 'static, T: Poolable<Y> + 'static> Drop for PoolGuard<Y, T>[src]

Auto Trait Implementations

impl<Y, T> RefUnwindSafe for PoolGuard<Y, T> where
    T: RefUnwindSafe,
    Y: RefUnwindSafe

impl<Y, T> !Send for PoolGuard<Y, T>

impl<Y, T> !Sync for PoolGuard<Y, T>

impl<Y, T> Unpin for PoolGuard<Y, T>

impl<Y, T> UnwindSafe for PoolGuard<Y, T> where
    T: RefUnwindSafe + UnwindSafe,
    Y: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.