Type Alias BoxedFn7

Source
pub type BoxedFn7<'a, T1, T2, T3, T4, T5, T6, T7, T8, E1> = Box<dyn FnOnce(T1, T2, T3, T4, T5, T6, T7) -> Result<T8, E1> + Send + Sync + 'a>;
Expand description

Type alias BoxedFn7 for Boxed FnOnce sync function with 7 arguments

Aliased Type§

struct BoxedFn7<'a, T1, T2, T3, T4, T5, T6, T7, T8, E1>(/* private fields */);

Trait Implementations§

Source§

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

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

Source§

fn provide(self, a: T7) -> BoxedFn6<'a, T1, T2, T3, T4, T5, T6, T8, E1>