pub trait ListPropsTrait {
    type TitemsSignal: SignalVec<Item = Dom>;
    type TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>;

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

Required Associated Types§

source

type TitemsSignal: SignalVec<Item = Dom>

source

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

Required Methods§

source

fn take(self) -> ListProps<Self::TitemsSignal, Self::TApplyFn>

Implementors§

source§

impl<TitemsSignal: SignalVec<Item = Dom>, TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>> ListPropsTrait for ListProps<TitemsSignal, TApplyFn>

§

type TitemsSignal = TitemsSignal

§

type TApplyFn = TApplyFn