Trait libafl_bolts::HasRefCnt

source ·
pub trait HasRefCnt {
    // Required methods
    fn refcnt(&self) -> isize;
    fn refcnt_mut(&mut self) -> &mut isize;
}
Expand description

Has a ref count

Required Methods§

source

fn refcnt(&self) -> isize

The ref count

source

fn refcnt_mut(&mut self) -> &mut isize

The ref count, mutable

Implementors§