Struct gtk4::builders::EntryCompletionBuilder
source · [−]pub struct EntryCompletionBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct EntryCompletion
objects.
Implementations
sourceimpl EntryCompletionBuilder
impl EntryCompletionBuilder
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new EntryCompletionBuilder
.
sourcepub fn build(self) -> EntryCompletion
pub fn build(self) -> EntryCompletion
Build the EntryCompletion
.
pub fn cell_area(self, cell_area: &impl IsA<CellArea>) -> Self
pub fn inline_completion(self, inline_completion: bool) -> Self
pub fn inline_selection(self, inline_selection: bool) -> Self
pub fn minimum_key_length(self, minimum_key_length: i32) -> Self
pub fn model(self, model: &impl IsA<TreeModel>) -> Self
pub fn popup_completion(self, popup_completion: bool) -> Self
pub fn popup_set_width(self, popup_set_width: bool) -> Self
pub fn popup_single_match(self, popup_single_match: bool) -> Self
pub fn text_column(self, text_column: i32) -> Self
Trait Implementations
sourceimpl Clone for EntryCompletionBuilder
impl Clone for EntryCompletionBuilder
sourcefn clone(&self) -> EntryCompletionBuilder
fn clone(&self) -> EntryCompletionBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for EntryCompletionBuilder
impl Default for EntryCompletionBuilder
sourcefn default() -> EntryCompletionBuilder
fn default() -> EntryCompletionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for EntryCompletionBuilder
impl !Send for EntryCompletionBuilder
impl !Sync for EntryCompletionBuilder
impl Unpin for EntryCompletionBuilder
impl UnwindSafe for EntryCompletionBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more