Struct len_caching_lock::mutex::LenCachingMutex[][src]

pub struct LenCachingMutex<T: ?Sized> { /* fields omitted */ }

Can be used in place of a Mutex where reading T’s len() without needing to lock, is advantageous. When the Guard is released, T’s len() will be cached. The cached len() may be at most 1 lock behind current state.

Implementations

impl<T: Len> LenCachingMutex<T>[src]

pub fn new(data: T) -> Self[src]

Constructs a new LenCachingMutex

impl<T: Len + ?Sized> LenCachingMutex<T>[src]

pub fn load_len(&self) -> usize[src]

Load the cached value that was returned from your T’s len() subsequent to the most recent lock being released.

pub fn lock(&self) -> CachingMutexGuard<'_, T>[src]

Delegates to parking_lot::Mutex lock().

pub fn try_lock(&self) -> Option<CachingMutexGuard<'_, T>>[src]

Delegates to parking_lot::Mutex try_lock().

Trait Implementations

impl<T: Debug + ?Sized> Debug for LenCachingMutex<T>[src]

impl<T: Len + Default> Default for LenCachingMutex<T>[src]

impl<T: Len> From<T> for LenCachingMutex<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for LenCachingMutex<T>

impl<T: ?Sized> Send for LenCachingMutex<T> where
    T: Send

impl<T: ?Sized> Sync for LenCachingMutex<T> where
    T: Send

impl<T: ?Sized> Unpin for LenCachingMutex<T> where
    T: Unpin

impl<T: ?Sized> UnwindSafe for LenCachingMutex<T> where
    T: UnwindSafe

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.