pub type OptionArcFnContextPinBoxSendSync<T> = Option<ArcFnContextPinBoxSendSync<T>>;Expand description
An optional, thread-safe, shareable handler function.
This is used when a handler may or may not be present, such as for optional middleware or hooks.
Aliased Type§
pub enum OptionArcFnContextPinBoxSendSync<T> {
None,
Some(Arc<dyn FnContextPinBoxSendSync<T, Output = Pin<Box<dyn Future<Output = T> + Send>>>>),
}