Type Alias CopyRangeTo

Source
pub type CopyRangeTo<Idx> = RangeTo<Idx>;
Expand description

core::ops::RangeTo is already Copy if Idx is Copy, so we just reexport it.

Aliased Type§

pub struct CopyRangeTo<Idx> {
    pub end: Idx,
}

Fields§

§end: Idx

The upper bound of the range (exclusive).