pub trait CompletionSnippetsExt: IsA<CompletionSnippets> + Sealed + 'static {
    // Provided methods
    fn priority(&self) -> i32 { ... }
    fn set_priority(&self, priority: i32) { ... }
    fn set_title(&self, title: Option<&str>) { ... }
    fn connect_priority_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn priority(&self) -> i32

source

fn set_priority(&self, priority: i32)

source

fn set_title(&self, title: Option<&str>)

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§