pub trait OperatorParser<'a>: ParserRunner<'a> {
Show 13 methods
// Required methods
fn and_then<B>(
self,
other: Self::P<'a, Self::Input, B>,
) -> Self::P<'a, Self::Input, (Self::Output, B)>
where Self::Output: Clone + Debug + 'a,
B: Clone + Debug + 'a;
fn or(
self,
other: Self::P<'a, Self::Input, Self::Output>,
) -> Self::P<'a, Self::Input, Self::Output>
where Self::Output: Debug + 'a;
fn exists(self) -> Self::P<'a, Self::Input, bool>
where Self::Output: Debug + 'a;
fn not(self) -> Self::P<'a, Self::Input, ()>
where Self::Output: Debug + 'a;
fn opt(self) -> Self::P<'a, Self::Input, Option<Self::Output>>
where Self::Output: Clone + Debug + 'a;
fn attempt(self) -> Self::P<'a, Self::Input, Self::Output>
where Self::Output: Debug + 'a;
fn scan_right1<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn chain_right0<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
x: Self::Output,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn chain_left0<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
x: Self::Output,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn chain_right1<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn chain_left1<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn rest_right1<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
x: Self::Output,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
fn rest_left1<BOP>(
self,
op: Self::P<'a, Self::Input, BOP>,
x: Self::Output,
) -> Self::P<'a, Self::Input, Self::Output>
where BOP: Fn(Self::Output, Self::Output) -> Self::Output + 'a,
Self::Output: Clone + Debug + 'a;
}
Required Methods§
fn and_then<B>( self, other: Self::P<'a, Self::Input, B>, ) -> Self::P<'a, Self::Input, (Self::Output, B)>
fn or( self, other: Self::P<'a, Self::Input, Self::Output>, ) -> Self::P<'a, Self::Input, Self::Output>
fn exists(self) -> Self::P<'a, Self::Input, bool>
fn not(self) -> Self::P<'a, Self::Input, ()>
fn opt(self) -> Self::P<'a, Self::Input, Option<Self::Output>>
fn attempt(self) -> Self::P<'a, Self::Input, Self::Output>
fn scan_right1<BOP>( self, op: Self::P<'a, Self::Input, BOP>, ) -> Self::P<'a, Self::Input, Self::Output>
fn chain_right0<BOP>( self, op: Self::P<'a, Self::Input, BOP>, x: Self::Output, ) -> Self::P<'a, Self::Input, Self::Output>
fn chain_left0<BOP>( self, op: Self::P<'a, Self::Input, BOP>, x: Self::Output, ) -> Self::P<'a, Self::Input, Self::Output>
fn chain_right1<BOP>( self, op: Self::P<'a, Self::Input, BOP>, ) -> Self::P<'a, Self::Input, Self::Output>
fn chain_left1<BOP>( self, op: Self::P<'a, Self::Input, BOP>, ) -> Self::P<'a, Self::Input, Self::Output>
fn rest_right1<BOP>( self, op: Self::P<'a, Self::Input, BOP>, x: Self::Output, ) -> Self::P<'a, Self::Input, Self::Output>
fn rest_left1<BOP>( self, op: Self::P<'a, Self::Input, BOP>, x: Self::Output, ) -> Self::P<'a, Self::Input, Self::Output>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.