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