pub trait HasRefCnt {
    fn refcnt(&self) -> isize;
    fn refcnt_mut(&mut self) -> &mut isize;
}
Expand description

Has a ref count

Required Methods

The ref count

The ref count, mutable

Implementors