Trait EventControllerExt

Source
pub trait EventControllerExt:
    IsA<EventController>
    + Sealed
    + 'static {
    // Provided methods
    fn propagation_phase(&self) -> PropagationPhase { ... }
    fn widget(&self) -> Option<Widget> { ... }
    fn handle_event(&self, event: &Event) -> bool { ... }
    fn reset(&self) { ... }
    fn set_propagation_phase(&self, phase: PropagationPhase) { ... }
    fn connect_propagation_phase_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

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§