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: String
Alphanumeric string identifying the service.
dictionary_id: String
Alphanumeric 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 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 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 Freeze for ListDictionaryItemsParams
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