1 2 3 4 5 6 7
use std::collections::HashMap; use std::sync::atomic::AtomicBool; use std::sync::Arc; pub type ActiveGadgets = HashMap<u64, HashMap<u64, (Arc<AtomicBool>, Option<tokio::sync::oneshot::Sender<()>>)>>; pub mod native;