[][src]Struct raui::prelude::context::WidgetContext

pub struct WidgetContext<'a> {
    pub id: &'a WidgetId,
    pub key: &'a str,
    pub props: &'a Props,
    pub shared_props: &'a Props,
    pub state: State<'a>,
    pub animator: &'a AnimatorState,
    pub life_cycle: &'a mut WidgetLifeCycle,
    pub named_slots: HashMap<String, WidgetNode, RandomState>,
    pub listed_slots: Vec<WidgetNode, Global>,
}

Fields

id: &'a WidgetIdkey: &'a strprops: &'a Propsshared_props: &'a Propsstate: State<'a>animator: &'a AnimatorStatelife_cycle: &'a mut WidgetLifeCyclenamed_slots: HashMap<String, WidgetNode, RandomState>listed_slots: Vec<WidgetNode, Global>

Implementations

impl<'a> WidgetContext<'a>[src]

pub fn take_named_slots(&mut self) -> HashMap<String, WidgetNode, RandomState>[src]

pub fn take_listed_slots(&mut self) -> Vec<WidgetNode, Global>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

pub fn use_hook<F>(&mut self, f: F) -> &mut WidgetContext<'a> where
    F: FnMut(&mut WidgetContext<'a>), 
[src]

Trait Implementations

impl<'a> Debug for WidgetContext<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for WidgetContext<'a>[src]

impl<'a> !Send for WidgetContext<'a>[src]

impl<'a> !Sync for WidgetContext<'a>[src]

impl<'a> Unpin for WidgetContext<'a>[src]

impl<'a> !UnwindSafe for WidgetContext<'a>[src]

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> From<T> for T[src]

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

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.