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