Lines Matching refs:quote_into_iter
56 /// These traits expose a `quote_into_iter` method which should allow calling
67 /// Extension trait providing the `quote_into_iter` method on iterators.
70 fn quote_into_iter(self) -> (Self, HasIter) {
77 /// Extension trait providing the `quote_into_iter` method for
82 /// Pretend to be an iterator for the purposes of `quote_into_iter`.
83 /// This allows repeated calls to `quote_into_iter` to continue
89 fn quote_into_iter(&self) -> (&Self, DoesNotHaveIter) {
96 /// Extension trait providing the `quote_into_iter` method for types that
102 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter);
108 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
109 <T as RepAsIteratorExt>::quote_into_iter(*self)
116 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
117 <T as RepAsIteratorExt>::quote_into_iter(*self)
124 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
132 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
140 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
148 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {
149 self.0.quote_into_iter()