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