pub trait KeybindParser: Send + Sync {
// Required method
fn parse(&self, content: &str) -> Result<Vec<Keybind>, ParseError>;
}Expand description
Trait for parsing keybind configurations
pub trait KeybindParser: Send + Sync {
// Required method
fn parse(&self, content: &str) -> Result<Vec<Keybind>, ParseError>;
}Trait for parsing keybind configurations