pub trait SeparatorToolItemExt: 'static {
    // Required methods
    fn draws(&self) -> bool;
    fn set_draw(&self, draw: bool);
    fn connect_draw_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn draws(&self) -> bool

source

fn set_draw(&self, draw: bool)

source

fn connect_draw_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Implementors§