1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[derive(Clone, Debug)] pub struct Service2MieConfig {} impl Service2MieConfig { pub fn new() -> Self { Service2MieConfig {} } } impl Default for Service2MieConfig { fn default() -> Self { Self::new() } }