Struct zng_app::update::EventUpdate
source · pub struct EventUpdate { /* private fields */ }Expand description
Represents a single event update.
Implementations§
source§impl EventUpdate
impl EventUpdate
sourcepub fn delivery_list(&self) -> &UpdateDeliveryList
pub fn delivery_list(&self) -> &UpdateDeliveryList
The update delivery list.
sourcepub fn delivery_list_mut(&mut self) -> &mut UpdateDeliveryList
pub fn delivery_list_mut(&mut self) -> &mut UpdateDeliveryList
Mutable reference to the update delivery list.
Note that this is only available app-extensions, nodes don’t get mutable access to the event update.
sourcepub fn args(&self) -> &dyn AnyEventArgs
pub fn args(&self) -> &dyn AnyEventArgs
The update args.
sourcepub fn with_window<H, R>(&self, handle: H) -> Option<R>where
H: FnOnce() -> R,
pub fn with_window<H, R>(&self, handle: H) -> Option<R>where
H: FnOnce() -> R,
Calls handle if the event targets the WINDOW.
sourcepub fn with_widget<H, R>(&self, handle: H) -> Option<R>where
H: FnOnce() -> R,
pub fn with_widget<H, R>(&self, handle: H) -> Option<R>where
H: FnOnce() -> R,
Calls handle if the event targets the WIDGET and propagation is not stopped.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for EventUpdate
impl !RefUnwindSafe for EventUpdate
impl Send for EventUpdate
impl Sync for EventUpdate
impl Unpin for EventUpdate
impl !UnwindSafe for EventUpdate
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