pub(crate) trait Merge {
// Required method
fn merge(
&mut self,
parent_config_path: Option<PathBuf>,
included_extensions: &mut HashSet<PathBuf>,
other: Self,
replace: ReplaceOpt,
);
}
Required Methods§
fn merge( &mut self, parent_config_path: Option<PathBuf>, included_extensions: &mut HashSet<PathBuf>, other: Self, replace: ReplaceOpt, )
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.