pub struct StoreDeleteRequest {
pub namespace: Option<Vec<String>>,
pub key: String,
}Expand description
StoreDeleteRequest : Request to delete an item.
Fields§
§namespace: Option<Vec<String>>A list of strings representing the namespace path.
key: StringThe unique identifier for the item.
Implementations§
Source§impl StoreDeleteRequest
impl StoreDeleteRequest
Sourcepub fn new(key: String) -> StoreDeleteRequest
pub fn new(key: String) -> StoreDeleteRequest
Request to delete an item.
Trait Implementations§
Source§impl Clone for StoreDeleteRequest
impl Clone for StoreDeleteRequest
Source§fn clone(&self) -> StoreDeleteRequest
fn clone(&self) -> StoreDeleteRequest
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 StoreDeleteRequest
impl Debug for StoreDeleteRequest
Source§impl Default for StoreDeleteRequest
impl Default for StoreDeleteRequest
Source§fn default() -> StoreDeleteRequest
fn default() -> StoreDeleteRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreDeleteRequest
impl<'de> Deserialize<'de> for StoreDeleteRequest
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
Source§impl PartialEq for StoreDeleteRequest
impl PartialEq for StoreDeleteRequest
Source§impl Serialize for StoreDeleteRequest
impl Serialize for StoreDeleteRequest
impl StructuralPartialEq for StoreDeleteRequest
Auto Trait Implementations§
impl Freeze for StoreDeleteRequest
impl RefUnwindSafe for StoreDeleteRequest
impl Send for StoreDeleteRequest
impl Sync for StoreDeleteRequest
impl Unpin for StoreDeleteRequest
impl UnwindSafe for StoreDeleteRequest
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