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