pub struct ListDictionaryItemsParams {
pub service_id: String,
pub dictionary_id: String,
pub page: Option<i32>,
pub per_page: Option<i32>,
pub sort: Option<String>,
pub direction: Option<String>,
}Expand description
struct for passing parameters to the method list_dictionary_items
Fields§
§service_id: StringAlphanumeric string identifying the service.
dictionary_id: StringAlphanumeric string identifying a Dictionary.
page: Option<i32>Current page.
per_page: Option<i32>Number of records per page.
sort: Option<String>Field on which to sort.
direction: Option<String>Direction in which to sort results.
Trait Implementations§
source§impl Clone for ListDictionaryItemsParams
impl Clone for ListDictionaryItemsParams
source§fn clone(&self) -> ListDictionaryItemsParams
fn clone(&self) -> ListDictionaryItemsParams
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 ListDictionaryItemsParams
impl Debug for ListDictionaryItemsParams
source§impl Default for ListDictionaryItemsParams
impl Default for ListDictionaryItemsParams
source§fn default() -> ListDictionaryItemsParams
fn default() -> ListDictionaryItemsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListDictionaryItemsParams
impl Send for ListDictionaryItemsParams
impl Sync for ListDictionaryItemsParams
impl Unpin for ListDictionaryItemsParams
impl UnwindSafe for ListDictionaryItemsParams
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