pub struct FindUserKeysByQueryParams {
pub query: String,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
}Expand description
struct for passing parameters to the method find_user_keys_by_query
Fields§
§query: StringThe search query.
start_at: Option<i64>The index of the first item to return in a page of results (page offset).
max_results: Option<i32>The maximum number of items to return per page.
Trait Implementations§
Source§impl Clone for FindUserKeysByQueryParams
impl Clone for FindUserKeysByQueryParams
Source§fn clone(&self) -> FindUserKeysByQueryParams
fn clone(&self) -> FindUserKeysByQueryParams
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 FindUserKeysByQueryParams
impl Debug for FindUserKeysByQueryParams
Source§impl Default for FindUserKeysByQueryParams
impl Default for FindUserKeysByQueryParams
Source§fn default() -> FindUserKeysByQueryParams
fn default() -> FindUserKeysByQueryParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FindUserKeysByQueryParams
impl RefUnwindSafe for FindUserKeysByQueryParams
impl Send for FindUserKeysByQueryParams
impl Sync for FindUserKeysByQueryParams
impl Unpin for FindUserKeysByQueryParams
impl UnwindSafe for FindUserKeysByQueryParams
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