Struct zng_app::widget::info::WidgetPath
source · pub struct WidgetPath { /* private fields */ }
Expand description
Full address of a widget.
The path is reference counted, cloning this struct does not alloc.
Implementations§
source§impl WidgetPath
impl WidgetPath
sourcepub fn new(window_id: WindowId, path: Arc<Vec<WidgetId>>) -> WidgetPath
pub fn new(window_id: WindowId, path: Arc<Vec<WidgetId>>) -> WidgetPath
New custom widget path.
sourcepub fn widgets_path(&self) -> &[WidgetId]
pub fn widgets_path(&self) -> &[WidgetId]
sourcepub fn ancestor_path(
&self,
ancestor_id: WidgetId,
) -> Option<Cow<'_, WidgetPath>>
pub fn ancestor_path( &self, ancestor_id: WidgetId, ) -> Option<Cow<'_, WidgetPath>>
Make a path to an ancestor id that is contained in the current path.
Get the inner most widget parent shared by both self
and other
.
sourcepub fn root_path(&self) -> Cow<'_, WidgetPath>
pub fn root_path(&self) -> Cow<'_, WidgetPath>
Gets a path to the root widget of this path.
Trait Implementations§
source§impl Clone for WidgetPath
impl Clone for WidgetPath
source§fn clone(&self) -> WidgetPath
fn clone(&self) -> WidgetPath
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for WidgetPath
impl Debug for WidgetPath
source§impl Display for WidgetPath
impl Display for WidgetPath
source§impl From<InteractionPath> for WidgetPath
impl From<InteractionPath> for WidgetPath
source§fn from(p: InteractionPath) -> Self
fn from(p: InteractionPath) -> Self
Converts to this type from the input type.
source§impl PartialEq<InteractionPath> for WidgetPath
impl PartialEq<InteractionPath> for WidgetPath
source§impl PartialEq<WidgetPath> for InteractionPath
impl PartialEq<WidgetPath> for InteractionPath
source§impl PartialEq for WidgetPath
impl PartialEq for WidgetPath
source§impl WidgetPathProvider for WidgetPath
impl WidgetPathProvider for WidgetPath
source§fn widget_and_ancestors(&self) -> Self::WidgetIter<'_>
fn widget_and_ancestors(&self) -> Self::WidgetIter<'_>
Iterate over the widget, parent, grandparent, .., root.
impl Eq for WidgetPath
Auto Trait Implementations§
impl Freeze for WidgetPath
impl RefUnwindSafe for WidgetPath
impl Send for WidgetPath
impl Sync for WidgetPath
impl Unpin for WidgetPath
impl UnwindSafe for WidgetPath
Blanket Implementations§
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Access to mut
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
Clone the value.
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
Clone the value into a new boxed
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
Gets if
self
equals other
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§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