pub trait LoadingBarPropsTrait {
    type TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>;

    // Required method
    fn take(self) -> LoadingBarProps<Self::TApplyFn>;
}

Required Associated Types§

source

type TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>

Required Methods§

Implementors§

source§

impl<TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>> LoadingBarPropsTrait for LoadingBarProps<TApplyFn>

§

type TApplyFn = TApplyFn