Enum leechbar::Event[][src]

pub enum Event {
    ClickEvent(ClickEvent),
    MotionEvent(MotionEvent),
}

Event that indicates interaction with the component.

Variants

User clicked on the component.

User moved the mouse inside of the component.

Trait Implementations

impl<'a> From<&'a ButtonPressEvent> for Event
[src]

Performs the conversion.

impl<'a> From<&'a MotionNotifyEvent> for Event
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Event

impl Sync for Event