Trait oni_comb_parser_rs::prelude::ParserFilter
source · pub trait ParserFilter<'a>: ParserRunner<'a> {
// Required method
fn with_filter<F>(self, f: F) -> Self
where F: Fn(&Self::Output) -> bool + 'a,
Self::Input: 'a,
Self::Output: 'a,
Self: Sized;
// Provided method
fn with_filter_not<F>(self, f: F) -> Self
where F: Fn(&Self::Output) -> bool + 'a,
Self::Input: 'a,
Self::Output: 'a,
Self: Sized { ... }
}Required Methods§
Provided Methods§
Object Safety§
This trait is not object safe.