Trait OverlaySignals

Source
pub trait OverlaySignals: 'static {
    // Required method
    fn connect_get_child_position<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &Widget) -> Option<Rectangle> + 'static;
}

Required Methods§

Source

fn connect_get_child_position<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Widget) -> Option<Rectangle> + 'static,

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§