Struct std::ops::RangeFromStable [-] [+] [src]

pub struct RangeFrom<Idx> {
    pub start: Idx,
}

A range which is only bounded below.

Fields

start

The lower bound of the range (inclusive).

Trait Implementations

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

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

impl<A> Iterator for RangeFrom<A> where A: Int

type Item = A

fn next(&mut self) -> Option<A>

fn size_hint(&self) -> (usize, Option<usize>)

Derived Implementations

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

fn assert_receiver_is_total_eq(&self)

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

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

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

fn ne(&self, &RangeFrom<Idx>) -> bool

impl<Idx> Clone for RangeFrom<Idx> where Idx: Clone

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

fn clone_from(&mut self, &RangeFrom<Idx>)