pub trait IFocusEvent: IEvent {
// Provided method
fn related_target(&self) -> Option<EventTarget> { ... }
}Expand description
The IFocusEvent interface represents focus-related
events.
Provided Methods§
Returns the secondary target of this event, if any.
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.