Trait Merge

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl<T> Merge for Option<T>

Source§

fn merge( &mut self, _parent_config_path: Option<PathBuf>, _included_extensions: &mut HashSet<PathBuf>, other: Self, replace: ReplaceOpt, )

Implementors§