pub struct GetFieldAutoCompleteForQueryStringParams {
pub field_name: Option<String>,
pub field_value: Option<String>,
pub predicate_name: Option<String>,
pub predicate_value: Option<String>,
}Expand description
struct for passing parameters to the method get_field_auto_complete_for_query_string
Fields§
§field_name: Option<String>The name of the field.
field_value: Option<String>The partial field item name entered by the user.
predicate_name: Option<String>The name of the CHANGED operator predicate for which the suggestions are generated. The valid predicate operators are by, from, and to.
predicate_value: Option<String>The partial predicate item name entered by the user.
Trait Implementations§
Source§impl Clone for GetFieldAutoCompleteForQueryStringParams
impl Clone for GetFieldAutoCompleteForQueryStringParams
Source§fn clone(&self) -> GetFieldAutoCompleteForQueryStringParams
fn clone(&self) -> GetFieldAutoCompleteForQueryStringParams
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 Default for GetFieldAutoCompleteForQueryStringParams
impl Default for GetFieldAutoCompleteForQueryStringParams
Source§fn default() -> GetFieldAutoCompleteForQueryStringParams
fn default() -> GetFieldAutoCompleteForQueryStringParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFieldAutoCompleteForQueryStringParams
impl RefUnwindSafe for GetFieldAutoCompleteForQueryStringParams
impl Send for GetFieldAutoCompleteForQueryStringParams
impl Sync for GetFieldAutoCompleteForQueryStringParams
impl Unpin for GetFieldAutoCompleteForQueryStringParams
impl UnwindSafe for GetFieldAutoCompleteForQueryStringParams
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