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