Trait zng_app::widget::node::UiNodeListChain
source · pub trait UiNodeListChain: UiNodeList {
// Required method
fn chain<B>(self, other: B) -> UiNodeListChainImpl
where B: UiNodeList,
Self: Sized;
}
Expand description
Adds the chain
method for all UiNodeList
implementors.
Required Methods§
sourcefn chain<B>(self, other: B) -> UiNodeListChainImplwhere
B: UiNodeList,
Self: Sized,
fn chain<B>(self, other: B) -> UiNodeListChainImplwhere
B: UiNodeList,
Self: Sized,
Creates a new UiNodeList
that chains self
and other
.
Special features of each inner list type is preserved.
Object Safety§
This trait is not object safe.