Struct core::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).

Trait Implementations

impl<Idx: Debug> Debug for RangeTo<Idx>

fn fmt(&self, fmt: &mut Formatter) -> Result

Derived Implementations

impl<Idx: Eq> Eq for RangeTo<Idx>

impl<Idx: PartialEq> PartialEq for RangeTo<Idx>

fn eq(&self, __arg_0: &RangeTo<Idx>) -> bool

fn ne(&self, __arg_0: &RangeTo<Idx>) -> bool

impl<Idx: Clone> Clone for RangeTo<Idx>

fn clone(&self) -> RangeTo<Idx>

fn clone_from(&mut self, source: &Self)

impl<Idx: Copy> Copy for RangeTo<Idx>