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