pub trait Len { // Required method fn len(&self) -> usize; }
Trait defining instance method len() : usize that indicates whether the implementing type instance is logically empty.
len() : usize