Trait Weigheable
weight_cache
pub trait Weigheable { fn measure(value: &Self) -> usize; }
A trait to implemented for the value type, providing a way to [measure] the thing.
measure
fn measure(value: &Self) -> usize