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).

Trait Implementations

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

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

impl<T> RangeArgument<T> for RangeTo<T>

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

Derived Implementations

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

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

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

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

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