pub enum MemoryActionKind {
Write {
store: String,
key: String,
},
Read {
store: String,
key: String,
},
}Expand description
Classification of a memory-shaped tool call extracted from a
ToolCallRequest. Empty key values mean “whole collection”.
Variants§
Trait Implementations§
Source§impl Clone for MemoryActionKind
impl Clone for MemoryActionKind
Source§fn clone(&self) -> MemoryActionKind
fn clone(&self) -> MemoryActionKind
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 MemoryActionKind
impl Debug for MemoryActionKind
Source§impl PartialEq for MemoryActionKind
impl PartialEq for MemoryActionKind
impl Eq for MemoryActionKind
impl StructuralPartialEq for MemoryActionKind
Auto Trait Implementations§
impl Freeze for MemoryActionKind
impl RefUnwindSafe for MemoryActionKind
impl Send for MemoryActionKind
impl Sync for MemoryActionKind
impl Unpin for MemoryActionKind
impl UnsafeUnpin for MemoryActionKind
impl UnwindSafe for MemoryActionKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.