pub trait CompletionSnippetsExt: IsA<CompletionSnippets> + '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§
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
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.