pub trait ContextManager { // Required method fn current(&self) -> &dyn Context; }
Keeps track of the current Context.
Get the currently active context.