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