pub trait Sequential { }Expand description
The Sequential trait is a marker trait defining a sequential collection of elements.
It is sealed, preventing external implementations, and is used to indicate that a type can
be treated as a sequence of elements, such as arrays or vectors.