pub enum WebMcpMemoryCapability {
Recall,
Store,
Search,
ContextAssembly,
Summarize,
Ingest,
}Expand description
Memory capabilities an agent can provide to a WebMCP page.
Variants§
Recall
Agent can recall past interactions.
Store
Agent can store new artifacts.
Search
Agent can search across trajectories.
ContextAssembly
Agent can assemble context packages.
Summarize
Agent can provide summarization.
Ingest
Agent can ingest multimodal content.
Trait Implementations§
Source§impl Clone for WebMcpMemoryCapability
impl Clone for WebMcpMemoryCapability
Source§fn clone(&self) -> WebMcpMemoryCapability
fn clone(&self) -> WebMcpMemoryCapability
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 ComposeSchema for WebMcpMemoryCapability
impl ComposeSchema for WebMcpMemoryCapability
Source§impl Debug for WebMcpMemoryCapability
impl Debug for WebMcpMemoryCapability
Source§impl<'de> Deserialize<'de> for WebMcpMemoryCapability
impl<'de> Deserialize<'de> for WebMcpMemoryCapability
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 Hash for WebMcpMemoryCapability
impl Hash for WebMcpMemoryCapability
Source§impl PartialEq for WebMcpMemoryCapability
impl PartialEq for WebMcpMemoryCapability
Source§impl Serialize for WebMcpMemoryCapability
impl Serialize for WebMcpMemoryCapability
Source§impl ToSchema for WebMcpMemoryCapability
impl ToSchema for WebMcpMemoryCapability
impl Copy for WebMcpMemoryCapability
impl Eq for WebMcpMemoryCapability
impl StructuralPartialEq for WebMcpMemoryCapability
Auto Trait Implementations§
impl Freeze for WebMcpMemoryCapability
impl RefUnwindSafe for WebMcpMemoryCapability
impl Send for WebMcpMemoryCapability
impl Sync for WebMcpMemoryCapability
impl Unpin for WebMcpMemoryCapability
impl UnwindSafe for WebMcpMemoryCapability
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.