pub trait Length {
    // Required method
    fn len(&self) -> Option<usize>;
}
Expand description

Get the usable length of a type.

Required Methods§

source

fn len(&self) -> Option<usize>

Implementors§

source§

impl<T: ArrayProperty + InspectTypeInternal> Length for T