[][src]Trait syncpool::PoolState

pub trait PoolState {
    fn expansion_enabled(&self) -> bool;
fn miss_count(&self) -> usize;
fn capacity(&self) -> usize;
fn len(&self) -> usize; fn is_empty(&self) -> bool { ... } }

Required methods

fn expansion_enabled(&self) -> bool

fn miss_count(&self) -> usize

fn capacity(&self) -> usize

fn len(&self) -> usize

Loading content...

Provided methods

fn is_empty(&self) -> bool

Loading content...

Implementors

impl<T> PoolState for SyncPool<T>[src]

Loading content...