sdmx_json/macros/
extendable.rs1macro_rules! impl_extendable {
2 ($($struct:ty),+ $(,)?) => {
3 $(
4 impl $crate::primitives::Extendable for $struct {
5 fn other(&self) -> Option<&HashMap<String, Value>> {
6 self.other.as_ref()
7 }
8 }
9 )+
10 }
11}