pub trait ContextHandling {
    type Context;

    fn clone_context(&self) -> Self::Context;
}

Required Associated Types

Required Methods

Implementors