Lines Matching refs:ThereIsNoIteratorInRepetition
23 pub struct ThereIsNoIteratorInRepetition; // False
25 impl BitOr<ThereIsNoIteratorInRepetition> for ThereIsNoIteratorInRepetition {
26 type Output = ThereIsNoIteratorInRepetition;
27 fn bitor(self, _rhs: ThereIsNoIteratorInRepetition) -> ThereIsNoIteratorInRepetition {
28 ThereIsNoIteratorInRepetition
32 impl BitOr<ThereIsNoIteratorInRepetition> for HasIterator {
34 fn bitor(self, _rhs: ThereIsNoIteratorInRepetition) -> HasIterator {
39 impl BitOr<HasIterator> for ThereIsNoIteratorInRepetition {
62 use super::{HasIterator as HasIter, ThereIsNoIteratorInRepetition as DoesNotHaveIter};