pub struct DeleteDictionaryItemParams {
pub service_id: String,
pub dictionary_id: String,
pub dictionary_item_key: String,
}
Expand description
struct for passing parameters to the method delete_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 DeleteDictionaryItemParams
impl Clone for DeleteDictionaryItemParams
Source§fn clone(&self) -> DeleteDictionaryItemParams
fn clone(&self) -> DeleteDictionaryItemParams
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 DeleteDictionaryItemParams
impl Debug for DeleteDictionaryItemParams
Source§impl Default for DeleteDictionaryItemParams
impl Default for DeleteDictionaryItemParams
Source§fn default() -> DeleteDictionaryItemParams
fn default() -> DeleteDictionaryItemParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteDictionaryItemParams
impl RefUnwindSafe for DeleteDictionaryItemParams
impl Send for DeleteDictionaryItemParams
impl Sync for DeleteDictionaryItemParams
impl Unpin for DeleteDictionaryItemParams
impl UnwindSafe for DeleteDictionaryItemParams
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