1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[macro_export]
macro_rules! impl_tag {
    ($tag:ident , $inner:ident) => {
        #[derive(Default)]
        pub struct $tag {
            inner: $inner,
            config: Config,
        }
        impl $tag {
            pub fn new() -> Self {
                Self::default()
            }
            pub fn read_from_path(path: impl AsRef<Path>) -> crate::Result<Self> {
                Ok(Self {
                    inner: $inner::read_from_path(path)?,
                    config: Config::default(),
                })
            }
        }
        impl AudioTagCommon for $tag {
            fn config(&self) -> &Config {
                &self.config
            }
            fn with_config(&self, config: Config) -> Box<dyn AudioTag> {
                Box::new(Self {
                    inner: self.inner.clone(),
                    config,
                })
            }
            fn into_anytag(&self) -> AnyTag<'_> {
                self.into()
            }
        }
    };
}