pub trait BTreeValueMapReplacementPathHelper {
// Required methods
fn replace_at_path(
&mut self,
path: &str,
replacement_type: ReplacementType,
) -> Result<(), Error>;
fn replace_at_paths<'a, I: IntoIterator<Item = &'a String>>(
&mut self,
paths: I,
replacement_type: ReplacementType,
) -> Result<(), Error>;
}Required Methods§
fn replace_at_path( &mut self, path: &str, replacement_type: ReplacementType, ) -> Result<(), Error>
fn replace_at_paths<'a, I: IntoIterator<Item = &'a String>>( &mut self, paths: I, replacement_type: ReplacementType, ) -> Result<(), Error>
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.