• Home
  • Raw
  • Download

Lines Matching defs:Range

123     type Range: Clone;  typedef
187 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>>; in uncons_range()
191 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
202 fn uncons_while1<F>(&mut self, mut f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
238 fn range(&self) -> Self::Range; in range()
249 err: <Input::Error as ParseError<Input::Token, Input::Range, Input::Position>>::StreamError, in wrap_stream_error()
266 ) -> ParseResult<Input::Range, <Input as StreamOnce>::Error> in uncons_range()
300 ) -> ParseResult<Input::Range, Input::Error> in uncons_while()
304 Input::Range: Range, in uncons_while()
335 ) -> ParseResult<Input::Range, Input::Error> in uncons_while1()
382 pub trait Range { interface
399 type Range = I::Range; typedef
443 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
451 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
459 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
468 fn range(&self) -> Self::Range { in range()
473 impl<'a, I> Range for &'a mut I impl
484 type Range = &'a str; typedef
554 fn uncons_while1<F>(&mut self, mut f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
600 fn range(&self) -> Self::Range { in range()
605 impl<'a> Range for &'a str { impl
612 impl<'a, T> Range for &'a [T] { impl
696 fn uncons_while1<F>(&mut self, mut f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
719 fn range(&self) -> Self::Range { in range()
739 type Range = &'a [T]; typedef
797 type Range = S::Range; typedef
816 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
821 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
828 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
841 fn range(&self) -> Self::Range { in range()
899 type Range = S::Range; typedef
918 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
923 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
930 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
943 fn range(&self) -> Self::Range { in range()
983 type Range = S::Range; typedef
1002 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
1007 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
1014 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
1027 fn range(&self) -> Self::Range { in range()
1057 type Range = &'a [T]; typedef
1143 fn uncons_while1<F>(&mut self, mut f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
1164 fn range(&self) -> Self::Range { in range()
1205 type Range = Input::Item; typedef