Trait range::RangeIndex

source ·
pub trait RangeIndex: Int + Debug {
    type Index;

    // Required methods
    fn new(x: Self::Index) -> Self;
    fn get(self) -> Self::Index;
}
Expand description

An index type to be used by a Range

Required Associated Types§

Required Methods§

source

fn new(x: Self::Index) -> Self

source

fn get(self) -> Self::Index

Implementations on Foreign Types§

source§

impl RangeIndex for usize

§

type Index = usize

source§

fn new(x: usize) -> usize

source§

fn get(self) -> usize

source§

impl RangeIndex for isize

§

type Index = isize

source§

fn new(x: isize) -> isize

source§

fn get(self) -> isize

Implementors§