Trait dmat_components::components::app_bar::AppBarPropsTrait
source · 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>;
}