pub trait IndexRange<T = usize> {
    fn start(&self) -> Option<T> { ... }
    fn end(&self) -> Option<T> { ... }
}
Expand description

IndexRange is implemented by Rust’s built-in range types, produced by range syntax like .., a.., ..b or c..d.

Provided Methods

Start index (inclusive)

End index (exclusive)

Implementations on Foreign Types

Implementors