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) -> SignalHandlerIdwhere F: Fn(&Self, &Widget) -> Option<Rectangle> + 'static,

Implementors§