Struct len_caching_lock::rwlock::LenCachingRwLock[][src]

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

Can be used in place of a RwLock where reading T’s len() without needing to lock, is advantageous. When the WriteGuard is released, T’s len() will be cached.

Implementations

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

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

Constructs a new LenCachingRwLock

impl<T: Len + ?Sized> LenCachingRwLock<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 write(&self) -> CachingRwLockWriteGuard<'_, T>[src]

Delegates to parking_lot::RwLock write().

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

Delegates to parking_lot::RwLock try_write().

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

Delegates to parking_lot::RwLock read().

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

Delegates to parking_lot::RwLock try_read().

Trait Implementations

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

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

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for LenCachingRwLock<T>

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

impl<T: ?Sized> Sync for LenCachingRwLock<T> where
    T: Send + Sync

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

impl<T: ?Sized> UnwindSafe for LenCachingRwLock<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.