pub struct SearchBar {
pub query: String,
pub focused: bool,
pub case_sensitive: bool,
}Expand description
A text filter for property names.
Fields§
§query: String§focused: bool§case_sensitive: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SearchBar
impl RefUnwindSafe for SearchBar
impl Send for SearchBar
impl Sync for SearchBar
impl Unpin for SearchBar
impl UnsafeUnpin for SearchBar
impl UnwindSafe for SearchBar
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