pub struct BulkSetsParams {
pub add_sets: Option<HashMap<String, String>>,
pub delete_sets: Option<Vec<String>>,
}Expand description
Parameters for bulk_sets. Either or both fields may be supplied.
Fields§
§add_sets: Option<HashMap<String, String>>Key/value pairs to add.
delete_sets: Option<Vec<String>>Keys to delete.
Trait Implementations§
Source§impl Clone for BulkSetsParams
impl Clone for BulkSetsParams
Source§fn clone(&self) -> BulkSetsParams
fn clone(&self) -> BulkSetsParams
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 BulkSetsParams
impl Debug for BulkSetsParams
Source§impl<'de> Deserialize<'de> for BulkSetsParams
impl<'de> Deserialize<'de> for BulkSetsParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BulkSetsParams
impl RefUnwindSafe for BulkSetsParams
impl Send for BulkSetsParams
impl Sync for BulkSetsParams
impl Unpin for BulkSetsParams
impl UnsafeUnpin for BulkSetsParams
impl UnwindSafe for BulkSetsParams
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