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