pub type BoxedFn5<'a, T1, T2, T3, T4, T5, T6, E1> = Box<dyn FnOnce(T1, T2, T3, T4, T5) -> Result<T6, E1> + Send + Sync + 'a>;
Expand description
Type alias BoxedFn5 for Boxed FnOnce sync function with 5 arguments
Aliased Type§
struct BoxedFn5<'a, T1, T2, T3, T4, T5, T6, E1>(/* private fields */);