pub trait Merge {
    // Required method
    fn merge(&mut self, other: Self);
}
Expand description

Trait for merging Arg structs. First struct takes precedence over second struct.

Required Methods§

source

fn merge(&mut self, other: Self)

Implementations on Foreign Types§

source§

impl Merge for Features

source§

fn merge(&mut self, other: Self)

source§

impl Merge for Workspace

source§

fn merge(&mut self, other: Self)

source§

impl Merge for Manifest

source§

fn merge(&mut self, other: Self)

Implementors§