Enum zaplib::SystemEvent
source · [−]pub enum SystemEvent {
WebRustCall(Option<WebRustCallEvent>),
Draw,
Paint,
WindowSetHoverCursor(MouseCursor),
}
Expand description
See Event::System
.
Variants
WebRustCall(Option<WebRustCallEvent>)
See WebRustCallEvent
. This event must have a handler registered through Cx::on_call_rust_async
.
Draw
Paint
We’re going to repaint our draw tree.
WindowSetHoverCursor(MouseCursor)
The system wants us to set a different mouse cursor.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SystemEvent
impl Send for SystemEvent
impl Sync for SystemEvent
impl Unpin for SystemEvent
impl UnwindSafe for SystemEvent
Blanket Implementations
Mutably borrows from an owned value. Read more