Trait oni_comb_parser_rs::prelude::ParserMonad
source · pub trait ParserMonad<'a>: ParserFunctor<'a> + ParserFilter<'a> {
// Required method
fn flat_map<B, F>(self, f: F) -> Self::P<'a, Self::Input, B>
where F: Fn(Self::Output) -> Self::P<'a, Self::Input, B> + 'a,
Self::Input: 'a,
Self::Output: 'a,
B: 'a;
}Required Methods§
Object Safety§
This trait is not object safe.