pub trait ToTomlKey {
// Required method
fn to_toml_key(&self) -> String;
}Required Methods§
fn to_toml_key(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<T> ToTomlKey for Twhere
T: WriteTomlKey + ?Sized,
Available on crate feature
alloc only.