pub trait InputFilter {
// Required method
fn filter(&self, input: &str) -> String;
}Expand description
A REPL filter that preprocesses input before parsing.
pub trait InputFilter {
// Required method
fn filter(&self, input: &str) -> String;
}A REPL filter that preprocesses input before parsing.