pub enum EventPhase {
Capturing,
AtTarget,
Bubbling,
}Expand description
Event phase (capturing vs bubbling)
Variants§
Capturing
Capturing phase (from root to target)
AtTarget
At target
Bubbling
Bubbling phase (from target to root)
Trait Implementations§
Source§impl Clone for EventPhase
impl Clone for EventPhase
Source§fn clone(&self) -> EventPhase
fn clone(&self) -> EventPhase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventPhase
impl Debug for EventPhase
Source§impl PartialEq for EventPhase
impl PartialEq for EventPhase
impl Copy for EventPhase
impl Eq for EventPhase
impl StructuralPartialEq for EventPhase
Auto Trait Implementations§
impl Freeze for EventPhase
impl RefUnwindSafe for EventPhase
impl Send for EventPhase
impl Sync for EventPhase
impl Unpin for EventPhase
impl UnwindSafe for EventPhase
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