pub trait AppBarPropsTrait {
    type TmainSignal: Signal<Item = Option<Dom>>;
    type TheaderSignal: Signal<Item = Option<Dom>>;
    type Tapp_bar_typeSignal: Signal<Item = AppBarType>;
    type TfixedSignal: Signal<Item = bool>;
    type TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>;

    // Required method
    fn take(
        self
    ) -> AppBarProps<Self::TmainSignal, Self::TheaderSignal, Self::Tapp_bar_typeSignal, Self::TfixedSignal, Self::TApplyFn>;
}

Required Associated Types§

source

type TmainSignal: Signal<Item = Option<Dom>>

source

type TheaderSignal: Signal<Item = Option<Dom>>

source

type Tapp_bar_typeSignal: Signal<Item = AppBarType>

source

type TfixedSignal: Signal<Item = bool>

source

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

Required Methods§

Implementors§

source§

impl<TmainSignal: Signal<Item = Option<Dom>>, TheaderSignal: Signal<Item = Option<Dom>>, Tapp_bar_typeSignal: Signal<Item = AppBarType>, TfixedSignal: Signal<Item = bool>, TApplyFn: FnOnce(DomBuilder<HtmlElement>) -> DomBuilder<HtmlElement>> AppBarPropsTrait for AppBarProps<TmainSignal, TheaderSignal, Tapp_bar_typeSignal, TfixedSignal, TApplyFn>

§

type TmainSignal = TmainSignal

§

type TheaderSignal = TheaderSignal

§

type Tapp_bar_typeSignal = Tapp_bar_typeSignal

§

type TfixedSignal = TfixedSignal

§

type TApplyFn = TApplyFn