pub struct SuggestionQuery {
pub property_name_query: Option<PropertyNameQuery>,
}
Expand description
Specified in the GetSearchSuggestions request. Limits the property names that are included in the response.
Fields§
§property_name_query: Option<PropertyNameQuery>
Defines a property name hint. Only property names that begin with the specified hint are included in the response.
Trait Implementations§
Source§impl Clone for SuggestionQuery
impl Clone for SuggestionQuery
Source§fn clone(&self) -> SuggestionQuery
fn clone(&self) -> SuggestionQuery
Returns a copy 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 SuggestionQuery
impl Debug for SuggestionQuery
Source§impl Default for SuggestionQuery
impl Default for SuggestionQuery
Source§fn default() -> SuggestionQuery
fn default() -> SuggestionQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for SuggestionQuery
impl PartialEq for SuggestionQuery
Source§impl Serialize for SuggestionQuery
impl Serialize for SuggestionQuery
impl StructuralPartialEq for SuggestionQuery
Auto Trait Implementations§
impl Freeze for SuggestionQuery
impl RefUnwindSafe for SuggestionQuery
impl Send for SuggestionQuery
impl Sync for SuggestionQuery
impl Unpin for SuggestionQuery
impl UnwindSafe for SuggestionQuery
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