pub trait LazyUiHooks {
// Provided methods
fn set_parent(&mut self, _parent: Option<ControlHandle>) { ... }
fn eager_build(&mut self) -> bool { ... }
}
Provided Methods§
fn set_parent(&mut self, _parent: Option<ControlHandle>)
Sourcefn eager_build(&mut self) -> bool
fn eager_build(&mut self) -> bool
Build this type when the nwg::PartialUi::build_partial
method is
called on LazyUi
. (Defaults to false
.)