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