Trait sourceview5::prelude::CompletionWordsExt
source · pub trait CompletionWordsExt: IsA<CompletionWords> + Sealed + 'static {
Show 16 methods
// Provided methods
fn register(&self, buffer: &impl IsA<TextBuffer>) { ... }
fn unregister(&self, buffer: &impl IsA<TextBuffer>) { ... }
fn minimum_word_size(&self) -> u32 { ... }
fn set_minimum_word_size(&self, minimum_word_size: u32) { ... }
fn priority(&self) -> i32 { ... }
fn set_priority(&self, priority: i32) { ... }
fn proposals_batch_size(&self) -> u32 { ... }
fn set_proposals_batch_size(&self, proposals_batch_size: u32) { ... }
fn scan_batch_size(&self) -> u32 { ... }
fn set_scan_batch_size(&self, scan_batch_size: u32) { ... }
fn set_title(&self, title: Option<&str>) { ... }
fn connect_minimum_word_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_priority_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_proposals_batch_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_scan_batch_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn register(&self, buffer: &impl IsA<TextBuffer>)
fn register(&self, buffer: &impl IsA<TextBuffer>)
sourcefn unregister(&self, buffer: &impl IsA<TextBuffer>)
fn unregister(&self, buffer: &impl IsA<TextBuffer>)
fn minimum_word_size(&self) -> u32
fn set_minimum_word_size(&self, minimum_word_size: u32)
fn priority(&self) -> i32
fn set_priority(&self, priority: i32)
fn proposals_batch_size(&self) -> u32
fn set_proposals_batch_size(&self, proposals_batch_size: u32)
fn scan_batch_size(&self) -> u32
fn set_scan_batch_size(&self, scan_batch_size: u32)
fn set_title(&self, title: Option<&str>)
fn connect_minimum_word_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_priority_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_proposals_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_scan_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.