//! This module uses external types and functions use std::cell::Cell; pub fn use_get(rc: &Cell) -> u32 { rc.get() } pub fn incr(rc: &mut Cell) { *rc.get_mut() += 1; }