[][src]Enum azul_core::dom::NotEventFilter

pub enum NotEventFilter {
    Hover(HoverEventFilter),
    Focus(FocusEventFilter),
}

The inverse of an onclick event filter, fires when an item is not hovered / focused. This is useful for cleanly implementing things like popover dialogs or dropdown boxes that want to close when the user clicks any where but the item itself.

Variants

Trait Implementations

impl Clone for NotEventFilter[src]

impl Copy for NotEventFilter[src]

impl Debug for NotEventFilter[src]

impl Eq for NotEventFilter[src]

impl Hash for NotEventFilter[src]

impl Ord for NotEventFilter[src]

impl PartialEq<NotEventFilter> for NotEventFilter[src]

impl PartialOrd<NotEventFilter> for NotEventFilter[src]

impl StructuralEq for NotEventFilter[src]

impl StructuralPartialEq for NotEventFilter[src]

Auto Trait Implementations

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> 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.