Trait IFocusEvent

Source
pub trait IFocusEvent: IEvent {
    // Provided method
    fn related_target(&self) -> Option<EventTarget> { ... }
}
Expand description

The IFocusEvent interface represents focus-related events.

(JavaScript docs)

Provided Methods§

Source

fn related_target(&self) -> Option<EventTarget>

Returns the secondary target of this event, if any.

(JavaScript docs)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§