pub trait DynamicCtorHelper<'a, 'b, C, O>where
    C: Context<'a>,{
    // Required method
    fn into_dyn_ctor(self) -> DynamicCtor<'b, C, O>;
}

Required Methods§

source

fn into_dyn_ctor(self) -> DynamicCtor<'b, C, O>

Implementors§

source§

impl<'a, 'b, C, O, T> DynamicCtorHelper<'a, 'b, C, O> for Twhere C: Context<'a>, T: Fn(&mut C) -> Result<O, Error> + 'b,