pub trait Len {
    fn len(&self) -> usize;
}
Expand description

Implement to allow a type with a len() method to be used with LenCachingMutex or LenCachingRwLock

Required methods

Implementations on Foreign Types

Implementors