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