Struct std::ops::RangeTo
[−]
[src]
pub struct RangeTo<Idx> { pub end: Idx, }
A range which is only bounded above.
Fields
end | The upper bound of the range (exclusive). |
pub struct RangeTo<Idx> { pub end: Idx, }
A range which is only bounded above.
end | The upper bound of the range (exclusive). |
impl<Idx> Debug for RangeTo<Idx> where Idx: Debug
impl<T> RangeArgument<T> for RangeTo<T>
impl<Idx> Eq for RangeTo<Idx> where Idx: Eq
fn assert_receiver_is_total_eq(&self)
impl<Idx> PartialEq<RangeTo<Idx>> for RangeTo<Idx> where Idx: PartialEq<Idx>
impl<Idx> Clone for RangeTo<Idx> where Idx: Clone
fn clone(&self) -> RangeTo<Idx>
fn clone_from(&mut self, source: &Self)
impl<Idx> Copy for RangeTo<Idx> where Idx: Copy