pub trait RefCountable {
// Required methods
fn inc_ref_count(&self);
fn dec_ref_count(&mut self);
}
Required Methods§
Sourcefn inc_ref_count(&self)
fn inc_ref_count(&self)
Increment ref count
Sourcefn dec_ref_count(&mut self)
fn dec_ref_count(&mut self)
Decrement ref count