pub trait SearchEntryExt: 'static {
    fn handle_event(&self, event: &Event) -> bool;
    fn connect_next_match<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn emit_next_match(&self);
    fn connect_previous_match<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn emit_previous_match(&self); fn connect_search_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_stop_search<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn emit_stop_search(&self); }

Required Methods

Implementors