pub trait StringLookup {
// Required method
fn lookup(&mut self, v: &str) -> Option<String>;
}Expand description
A simple lookup function, used by the StringSource.
pub trait StringLookup {
// Required method
fn lookup(&mut self, v: &str) -> Option<String>;
}A simple lookup function, used by the StringSource.