Trait wasmer_deploy_schema::schema::Merge
source · pub trait Merge {
// Required method
fn merge_extend(self, other: &Self) -> Self;
}
Expand description
Extend values with defaults.
Required Methods§
sourcefn merge_extend(self, other: &Self) -> Self
fn merge_extend(self, other: &Self) -> Self
Extend self
with values provided by other
.
Values on self
should take precedence over other
.