pub trait RangeProcessor {
// Required method
fn process_range(
&self,
start: &str,
end: &str,
) -> (Option<Bytes>, Option<Bytes>);
}
Expand description
A RangeProcessor
can be used to customize how a crate::QueryParser
expands range-based
queries