pub trait GetTomlValue { // Required method fn get(&self, key: &str) -> Option<&Value>; }
A trait for getting a TOML value by key.