pub trait KeyValOutputHandler {
    // Required method
    fn key_values(&self) -> Vec<(String, Option<String>)>;
}

Required Methods§

Implementors§