pub struct GetDictionaryItemParams {
pub service_id: String,
pub dictionary_id: String,
pub dictionary_item_key: String,
}
Expand description
struct for passing parameters to the method get_dictionary_item
Fields§
§service_id: String
Alphanumeric string identifying the service.
dictionary_id: String
Alphanumeric string identifying a Dictionary.
dictionary_item_key: String
Item key, maximum 256 characters.
Trait Implementations§
source§impl Clone for GetDictionaryItemParams
impl Clone for GetDictionaryItemParams
source§fn clone(&self) -> GetDictionaryItemParams
fn clone(&self) -> GetDictionaryItemParams
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 GetDictionaryItemParams
impl Debug for GetDictionaryItemParams
source§impl Default for GetDictionaryItemParams
impl Default for GetDictionaryItemParams
source§fn default() -> GetDictionaryItemParams
fn default() -> GetDictionaryItemParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GetDictionaryItemParams
impl Send for GetDictionaryItemParams
impl Sync for GetDictionaryItemParams
impl Unpin for GetDictionaryItemParams
impl UnwindSafe for GetDictionaryItemParams
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