pub trait TomlTableMutateExt {
// Required methods
fn upsert(
&mut self,
_: &str,
_: impl Serialize,
) -> Result<(), ConfigMutateError>;
fn delete(&mut self, _: &str) -> Result<(), ConfigMutateError>;
}Expand description
Extension trait for [toml::Table] to mutate values at a given dot-separated path.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.