Mergeable

Trait Mergeable 

Source
trait Mergeable {
    // Required method
    fn merge(&mut self, other: Self, env: &EnvProperties)
       where Self: Sized;
}

Required Methods§

Source

fn merge(&mut self, other: Self, env: &EnvProperties)
where Self: Sized,

Implementations on Foreign Types§

Source§

impl Mergeable for RepoOptions

Source§

fn merge(&mut self, other: Self, env: &EnvProperties)

Apply any values in other, overriding any existing values in self.

Source§

impl<T> Mergeable for Option<T>
where T: Mergeable,

Source§

fn merge(&mut self, other: Self, env: &EnvProperties)
where Self: Sized,

Implementors§