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