Type Alias BoolAttribute
pub type BoolAttribute = MaybeDyn<bool>;
Expand description
Type alias respresenting a possibly dynamic boolean value.
Aliased Type§
enum BoolAttribute {
Static(bool),
Signal(ReadSignal<bool>),
Derived(Rc<dyn Fn() -> MaybeDyn<bool>>),
}