pub trait ToTomlKey {
// Required method
fn to_toml_key(&self) -> String;
}Required Methods§
fn to_toml_key(&self) -> String
Implementors§
impl<T> ToTomlKey for Twhere
T: WriteTomlKey + ?Sized,
Available on crate feature
alloc only.