pub trait DynamicCreateCtorThenHelper<'a, C>where
    Self: Sized,
    C: Context<'a> + Match<C>,{
    // Required method
    fn dyn_then_ctor<F>(self, func: F) -> DynamicCreateCtorThen<C, Self, F>;
}

Required Methods§

source

fn dyn_then_ctor<F>(self, func: F) -> DynamicCreateCtorThen<C, Self, F>

Implementors§

source§

impl<'a, C, T> DynamicCreateCtorThenHelper<'a, C> for Twhere Self: Sized, C: Context<'a> + Match<C>,