pub trait EditableExtManual: Sealed + IsA<Editable> + 'static {
    // Provided 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.

Provided Methods§

source

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

Implementors§