pub struct GetValidationKeysListParams {
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
pub sort_by: Option<String>,
pub order: Option<String>,
}
Expand description
struct for passing parameters to the method [get_validation_keys_list
]
Fields§
§page_cursor: Option<String>
Cursor to the next page
page_size: Option<f64>
Amount of results to return in the next page
sort_by: Option<String>
Field(s) to use for sorting
order: Option<String>
Is the order ascending or descending
Implementations§
Source§impl GetValidationKeysListParams
impl GetValidationKeysListParams
Sourcepub fn builder() -> GetValidationKeysListParamsBuilder
pub fn builder() -> GetValidationKeysListParamsBuilder
Create an instance of GetValidationKeysListParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetValidationKeysListParams
impl Clone for GetValidationKeysListParams
Source§fn clone(&self) -> GetValidationKeysListParams
fn clone(&self) -> GetValidationKeysListParams
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 moreAuto Trait Implementations§
impl Freeze for GetValidationKeysListParams
impl RefUnwindSafe for GetValidationKeysListParams
impl Send for GetValidationKeysListParams
impl Sync for GetValidationKeysListParams
impl Unpin for GetValidationKeysListParams
impl UnwindSafe for GetValidationKeysListParams
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