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