Struct zng_app::widget::node::AdoptiveNode
source · pub struct AdoptiveNode<U> { /* private fields */ }
Expand description
Represents a node setup to dynamically swap child.
Any property node can be made adoptive by wrapping it with this node.
Implementations§
source§impl<U: UiNode> AdoptiveNode<U>
impl<U: UiNode> AdoptiveNode<U>
sourcepub fn new(create: impl FnOnce(AdoptiveChildNode) -> U) -> Self
pub fn new(create: impl FnOnce(AdoptiveChildNode) -> U) -> Self
Create the adoptive node, the AdoptiveChildNode
must be used as the child of the created node.
The created node is assumed to not be inited.
sourcepub fn try_new<E>(
create: impl FnOnce(AdoptiveChildNode) -> Result<U, E>,
) -> Result<Self, E>
pub fn try_new<E>( create: impl FnOnce(AdoptiveChildNode) -> Result<U, E>, ) -> Result<Self, E>
Create the adoptive node using a closure that can fail.
The created node is assumed to not be inited.
sourcepub fn replace_child(&mut self, new_child: impl UiNode) -> BoxedUiNode
pub fn replace_child(&mut self, new_child: impl UiNode) -> BoxedUiNode
sourcepub fn into_parts(self) -> (Arc<Mutex<BoxedUiNode>>, U)
pub fn into_parts(self) -> (Arc<Mutex<BoxedUiNode>>, U)
sourcepub fn from_parts(child: Arc<Mutex<BoxedUiNode>>, node: U) -> Self
pub fn from_parts(child: Arc<Mutex<BoxedUiNode>>, node: U) -> Self
From parts, assumes the nodes are not inited and that child
is the actual child of node
.
Trait Implementations§
source§impl<U: UiNode> UiNode for AdoptiveNode<U>
impl<U: UiNode> UiNode for AdoptiveNode<U>
source§fn info(&mut self, info: &mut WidgetInfoBuilder)
fn info(&mut self, info: &mut WidgetInfoBuilder)
Builds widget info. Read more
source§fn update(&mut self, updates: &WidgetUpdates)
fn update(&mut self, updates: &WidgetUpdates)
Receives variable and other non-event updates. Read more
source§fn event(&mut self, update: &EventUpdate)
fn event(&mut self, update: &EventUpdate)
Receives an event. Read more
source§fn measure(&mut self, wm: &mut WidgetMeasure) -> PxSize
fn measure(&mut self, wm: &mut WidgetMeasure) -> PxSize
Computes the widget size given the contextual layout metrics without actually updating the widget layout. Read more
source§fn layout(&mut self, wl: &mut WidgetLayout) -> PxSize
fn layout(&mut self, wl: &mut WidgetLayout) -> PxSize
Computes the widget layout given the contextual layout metrics. Read more
source§fn render(&mut self, frame: &mut FrameBuilder)
fn render(&mut self, frame: &mut FrameBuilder)
Generates render instructions and updates transforms and hit-test areas. Read more
source§fn render_update(&mut self, update: &mut FrameUpdate)
fn render_update(&mut self, update: &mut FrameUpdate)
Updates values in the last generated frame. Read more
source§fn boxed(self) -> BoxedUiNodewhere
Self: Sized,
fn boxed(self) -> BoxedUiNodewhere
Self: Sized,
Box this node or just returns
self
if it is already a BoxedUiNode
.source§fn cfg_boxed(self) -> BoxedUiNodewhere
Self: Sized,
fn cfg_boxed(self) -> BoxedUiNodewhere
Self: Sized,
Helper for complying with the
"dyn_node"
feature, boxes the node or just returns it depending of the
compile time feature.source§fn is_widget(&self) -> bool
fn is_widget(&self) -> bool
Gets if this node represents a full widget, that is, it is the outer-most widget node and defines a widget context. Read more
source§fn with_context<R, F>(
&mut self,
update_mode: WidgetUpdateMode,
f: F,
) -> Option<R>where
F: FnOnce() -> R,
fn with_context<R, F>(
&mut self,
update_mode: WidgetUpdateMode,
f: F,
) -> Option<R>where
F: FnOnce() -> R,
source§fn into_widget(self) -> BoxedUiNodewhere
Self: Sized,
fn into_widget(self) -> BoxedUiNodewhere
Self: Sized,
Gets a
BoxedUiNode
that is a full widget. Read moresource§fn init_widget(self) -> (BoxedUiNode, ResponseVar<WidgetId>)where
Self: Sized,
fn init_widget(self) -> (BoxedUiNode, ResponseVar<WidgetId>)where
Self: Sized,
Gets a
BoxedUiNode
that already is a full widget or will be after init and a response var that
already is the widget ID or will update once after init with the ID. Read moresource§fn downcast_unbox<T: UiNode>(self) -> Result<T, BoxedUiNode>where
Self: Sized,
fn downcast_unbox<T: UiNode>(self) -> Result<T, BoxedUiNode>where
Self: Sized,
source§fn actual_type_id(&self) -> TypeId
fn actual_type_id(&self) -> TypeId
Returns the
type_id
of the unboxed node.source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Access to mut
dyn Any
methods.source§fn trace<E, S>(self, enter_mtd: E) -> BoxedUiNode
fn trace<E, S>(self, enter_mtd: E) -> BoxedUiNode
Wraps the node in a node that, before delegating each method, calls a closure with
the
UiNodeOpMethod
, the closure can return a span that is dropped after the method delegation. Read moreAuto Trait Implementations§
impl<U> Freeze for AdoptiveNode<U>where
U: Freeze,
impl<U> !RefUnwindSafe for AdoptiveNode<U>
impl<U> Send for AdoptiveNode<U>where
U: Send,
impl<U> Sync for AdoptiveNode<U>where
U: Sync,
impl<U> Unpin for AdoptiveNode<U>where
U: Unpin,
impl<U> !UnwindSafe for AdoptiveNode<U>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more