pub trait EditableExtManual: 'static {
    // Required method
    fn connect_insert_text<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &str, &mut i32) + 'static;
}
Expand description

Trait containing manually implemented methods of Editable.

Required Methods§

source

fn connect_insert_text<F>(&self, f: F) -> SignalHandlerIdwhere F: Fn(&Self, &str, &mut i32) + 'static,

Implementors§