trait Mergeable {
// Required method
fn merge(&mut self, other: Self, env: &EnvProperties)
where Self: Sized;
}Required Methods§
fn merge(&mut self, other: Self, env: &EnvProperties)where
Self: Sized,
Implementations on Foreign Types§
Source§impl Mergeable for RepoOptions
impl Mergeable for RepoOptions
Source§fn merge(&mut self, other: Self, env: &EnvProperties)
fn merge(&mut self, other: Self, env: &EnvProperties)
Apply any values in other, overriding any existing values in self.