[][src]Trait indexing::container_traits::IndexRange

pub trait IndexRange<I>: Sized {
    fn start(&self) -> Option<I> { ... }
fn end(&self) -> Option<I> { ... } }

A range being .., a.., ..b, or a..b.

Provided methods

fn start(&self) -> Option<I>

fn end(&self) -> Option<I>

Loading content...

Implementations on Foreign Types

impl<I: Copy> IndexRange<I> for RangeFull[src]

impl<I: Copy> IndexRange<I> for RangeFrom<I>[src]

impl<I: Copy> IndexRange<I> for RangeTo<I>[src]

impl<I: Copy> IndexRange<I> for Range<I>[src]

Loading content...

Implementors

Loading content...