pub use std::collections::BTreeMap; #[derive(Debug, Clone, PartialEq)] pub enum Event { Notify { system: String, subsystem: String, kind: String, data: BTreeMap }, Attach { dev: String, parent: BTreeMap, location: String }, Detach { dev: String, parent: BTreeMap, location: String }, Nomatch { parent: BTreeMap, location: String }, }