pub trait BoxedCtorHelper<'a, C, M, O>where
    C: Context<'a> + Match<C>,{
    // Required method
    fn into_boxed_ctor(self) -> BoxedCtor<C, Self>
       where Self: Sized;
}

Required Methods§

source

fn into_boxed_ctor(self) -> BoxedCtor<C, Self>where Self: Sized,

Implementors§

source§

impl<'a, C, M, O, I> BoxedCtorHelper<'a, C, M, O> for Iwhere I: Ctor<'a, C, M, O>, C: Context<'a> + Match<C>,