[][src]Struct pugl_ui::widget::WidgetHandle

pub struct WidgetHandle<W: Widget> { /* fields omitted */ }

A handle of a widget.

Contains the Id of the widget and a PhantomData of its actual type. When a widget of type <T: Widget> is registered in the UI by UI::new_widget() an object WidgetHandle<T> is returned. As it contains only the Id of the widget, it is copyable.

The widget itself can then be borrowed from the UI using UI::widget<T: Widget>(), which takes a generic WidgetHandle as an argument. So it can deduce and downcast the widget to the actual T.

Trait Implementations

impl<W: Widget> Clone for WidgetHandle<W>[src]

impl<W: Widget> Copy for WidgetHandle<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for WidgetHandle<W> where
    W: RefUnwindSafe

impl<W> Send for WidgetHandle<W>

impl<W> Sync for WidgetHandle<W>

impl<W> Unpin for WidgetHandle<W> where
    W: Unpin

impl<W> UnwindSafe for WidgetHandle<W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.