pub trait MaybeLength {
    fn len(&self) -> Option<usize>;
}
Expand description

Types that implement this trait expose a length function

Required Methods

Returns the size of the object

Implementations on Foreign Types

Implementors