Trait ToTomlKey

Source
pub trait ToTomlKey {
    // Required method
    fn to_toml_key(&self) -> String;
}
Available on crate feature alloc only.

Required Methods§

Implementors§

Source§

impl<T> ToTomlKey for T
where T: WriteTomlKey + ?Sized,