Enum stdweb::web::event::EventPhase[][src]

pub enum EventPhase {
    None,
    Capturing,
    AtTarget,
    Bubbling,
}

Indicates the phase of event flow during event proessing.

Variants

No event is currently being processed.

The event is being propagated down through the target's ancestors.

The target is currently processing the event.

The event is propagating back up through the target's ancestors.

Trait Implementations

impl Clone for EventPhase
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for EventPhase
[src]

impl Debug for EventPhase
[src]

Formats the value using the given formatter. Read more

impl Eq for EventPhase
[src]

impl PartialEq for EventPhase
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for EventPhase

impl Sync for EventPhase