pub struct UpsertDictionaryItemParams {
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 upsert_dictionary_item
Fields§
§service_id: StringAlphanumeric string identifying the service.
dictionary_id: StringAlphanumeric string identifying a Dictionary.
dictionary_item_key: StringItem 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 UpsertDictionaryItemParams
impl Clone for UpsertDictionaryItemParams
source§fn clone(&self) -> UpsertDictionaryItemParams
fn clone(&self) -> UpsertDictionaryItemParams
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 UpsertDictionaryItemParams
impl Debug for UpsertDictionaryItemParams
source§impl Default for UpsertDictionaryItemParams
impl Default for UpsertDictionaryItemParams
source§fn default() -> UpsertDictionaryItemParams
fn default() -> UpsertDictionaryItemParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UpsertDictionaryItemParams
impl Send for UpsertDictionaryItemParams
impl Sync for UpsertDictionaryItemParams
impl Unpin for UpsertDictionaryItemParams
impl UnwindSafe for UpsertDictionaryItemParams
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