pub struct MemoryDeleteBody {
pub context_id: String,
pub key: String,
}Expand description
spec/vta/memory/delete/0.1 request body.
Fields§
§context_id: StringThe context the entry belongs to. The caller must have ACL access to it.
key: StringThe entry key to delete. not_found if absent.
Trait Implementations§
Source§impl Clone for MemoryDeleteBody
impl Clone for MemoryDeleteBody
Source§fn clone(&self) -> MemoryDeleteBody
fn clone(&self) -> MemoryDeleteBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MemoryDeleteBody
impl Debug for MemoryDeleteBody
Source§impl<'de> Deserialize<'de> for MemoryDeleteBody
impl<'de> Deserialize<'de> for MemoryDeleteBody
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 MemoryDeleteBody
impl RefUnwindSafe for MemoryDeleteBody
impl Send for MemoryDeleteBody
impl Sync for MemoryDeleteBody
impl Unpin for MemoryDeleteBody
impl UnsafeUnpin for MemoryDeleteBody
impl UnwindSafe for MemoryDeleteBody
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