pub trait FileClient: Send + Sync {
// Required methods
fn get(&self, key: &str) -> Option<String>;
fn set(&self, key: &str, value: String) -> bool;
fn delete(&self, key: &str) -> bool;
}Expand description
File client. map drives field extraction from file contents.