use std::sync::Condvar; use super::global_store::GlobalStore; struct Scheduler<'g> { global: &'g GlobalStore, } impl<'g> Scheduler<'g> { pub fn new(store: &'g GlobalStore) { } }