pub fn run_with_context<T, R>(
manager: &mut impl ContextManager<T>,
body: impl FnOnce(T) -> Result<R, Box<Raised>>,
) -> Result<Option<R>, Box<Raised>>Expand description
Run one synchronous context extent, guaranteeing exit on both paths.