pub trait HasLen {
    fn len(&self) -> usize;

    fn is_empty(&self) -> bool { ... }
}
Expand description

Has a length field

Required Methods

The length

Provided Methods

Returns true if it has no elements.

Implementors