pub trait Sizer { // Required method fn size(&self, text: &str) -> Result<usize>; }
An interface for counting the size of a code chunk.