pub type AroundContinuation<'a, T> = Box<dyn FnOnce(&mut T) -> CallbackResult + 'a>;
The continuation passed to around callbacks.
pub struct AroundContinuation<'a, T>(/* private fields */);