pub trait ContextManager {
    // Required method
    fn current(&self) -> &dyn Context;
}
Expand description

Keeps track of the current Context.

Required Methods§

source

fn current(&self) -> &dyn Context

Get the currently active context.

Implementors§