#[derive(Debug, Clone, Default, PartialEq)]pubstructLayerMetadata{pubname:Option<String>,
//TODO(#4): add default path metadata
}implLayerMetadata{/// Merge with another [`LayerMetadata`].
////// Only the common attributes are kept, the other are discarded.
pubfnmerge(&mutself, other:&Self){ifself.name != other.name {self.name =None;}}}