Trait libafl::bolts::tuples::HasLen[][src]

pub trait HasLen {
    const LEN: usize;

    fn len(&self) -> usize;

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

Gets the length of the element

Associated Constants

The length as constant usize

Required methods

The length

Provided methods

Returns true, if empty

Implementations on Foreign Types

Implementors