pub trait Length { // Required method fn len(&self) -> Option<usize>; // Provided method fn is_empty(&self) -> Option<bool> { ... } }
Get the usable length of a type.