trait GetStr {
// Required method
fn get_str(&self, key: &'static str) -> Option<String>;
}Expand description
Helper trait used to extract attributes of type &'static str.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".