1 2 3 4 5 6
use crate::types::runtime_state::State; use std::cell::RefCell; thread_local! { pub static STATE: RefCell<State> = RefCell::default(); }