pub struct AutoCompleteConfig {
pub complete_fields: bool,
pub complete_styles: bool,
pub complete_tags: bool,
pub complete_values: bool,
pub max_suggestions: usize,
pub min_chars: usize,
}Expand description
Configuration for auto-completion
Fields§
§complete_fields: boolEnable field name completion
complete_styles: boolEnable style reference completion
Enable override tag completion
complete_values: boolEnable value completion
max_suggestions: usizeMaximum suggestions to show
min_chars: usizeMinimum characters before triggering
Trait Implementations§
Source§impl Clone for AutoCompleteConfig
impl Clone for AutoCompleteConfig
Source§fn clone(&self) -> AutoCompleteConfig
fn clone(&self) -> AutoCompleteConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoCompleteConfig
impl Debug for AutoCompleteConfig
Auto Trait Implementations§
impl Freeze for AutoCompleteConfig
impl RefUnwindSafe for AutoCompleteConfig
impl Send for AutoCompleteConfig
impl Sync for AutoCompleteConfig
impl Unpin for AutoCompleteConfig
impl UnwindSafe for AutoCompleteConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more