oni_comb_parser_rs/internal/parser_impl/
bitor_impl.rs1use crate::core::Parser;
2use crate::extension::parser::OperatorParser;
3use std::fmt::Debug;
4use std::ops::BitOr;
5
6impl<'a, I, A> BitOr for Parser<'a, I, A>
7where
8 A: Debug + 'a,
9{
10 type Output = Self;
11
12 fn bitor(self, rhs: Parser<'a, I, A>) -> Self::Output {
13 self.or(rhs)
14 }
15}