Trait ToTomlValue

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

Required Methods§

Implementors§

Source§

impl<T> ToTomlValue for T
where T: WriteTomlValue + ?Sized,