pub trait Context: Sync + Send {
    fn data(&self) -> ⤅
    fn data_mut(&mut self) -> &mut Map;
    fn clone(&self) -> Box<dyn Context>;
}

Required Methods

Implementors