pub struct UpdateConfigStoreItemParams {
pub config_store_id: String,
pub config_store_item_key: String,
pub item_key: Option<String>,
pub item_value: Option<String>,
}
Expand description
struct for passing parameters to the method update_config_store_item
Fields§
§config_store_id: String
An alphanumeric string identifying the config store.
config_store_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 UpdateConfigStoreItemParams
impl Clone for UpdateConfigStoreItemParams
source§fn clone(&self) -> UpdateConfigStoreItemParams
fn clone(&self) -> UpdateConfigStoreItemParams
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 UpdateConfigStoreItemParams
impl Debug for UpdateConfigStoreItemParams
source§impl Default for UpdateConfigStoreItemParams
impl Default for UpdateConfigStoreItemParams
source§fn default() -> UpdateConfigStoreItemParams
fn default() -> UpdateConfigStoreItemParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UpdateConfigStoreItemParams
impl Send for UpdateConfigStoreItemParams
impl Sync for UpdateConfigStoreItemParams
impl Unpin for UpdateConfigStoreItemParams
impl UnwindSafe for UpdateConfigStoreItemParams
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