pub type BoxHandler = Arc<dyn Fn(Value) -> Pin<Box<dyn Future<Output = Result<Value, CruxErr>> + Send>> + Send + Sync>;
Type-erased async handler: Value in, Value out.
pub struct BoxHandler { /* private fields */ }