Type Alias function_compose::BoxedFn5

source ·
pub type BoxedFn5<'a, T1, T2, T3, T4, T5, T6> = Box<dyn FnOnce(T1, T2, T3, T4, T5) -> Result<T6, FnError> + 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>(/* private fields */);

Trait Implementations§

source§

impl<'a, T1, T2, T3, T4, T5, T6> Injector<T5, Box<dyn FnOnce(T1, T2, T3, T4) -> Result<T6, FnError> + Sync + Send + 'a>> for BoxedFn5<'a, T1, T2, T3, T4, T5, T6>
where T1: 'a, T2: 'a, T3: 'a, T4: 'a, T5: Send + Sync + 'a, T6: 'a,

Injector implementation for a given sync function that accepts 4 + 1 arguments and returns a function with 4 arguments

source§

fn provide(self, a: T5) -> BoxedFn4<'a, T1, T2, T3, T4, T6>