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