Enum PluginCapability
pub enum PluginCapability {
Tool,
Channel,
Memory,
Observer,
Skill,
}Expand description
What a plugin can do.
Variants§
Tool
Provides one or more tools
Channel
Provides a channel implementation
Memory
Provides a memory backend
Observer
Provides an observer/metrics backend
Skill
Provides one or more agentskills.io-format skills under skills/
Trait Implementations§
Source§impl Clone for PluginCapability
impl Clone for PluginCapability
Source§fn clone(&self) -> PluginCapability
fn clone(&self) -> PluginCapability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PluginCapability
impl Debug for PluginCapability
Source§impl<'de> Deserialize<'de> for PluginCapability
impl<'de> Deserialize<'de> for PluginCapability
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 PluginCapability
impl Hash for PluginCapability
Source§impl PartialEq for PluginCapability
impl PartialEq for PluginCapability
Source§fn eq(&self, other: &PluginCapability) -> bool
fn eq(&self, other: &PluginCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PluginCapability
impl Serialize for PluginCapability
impl Copy for PluginCapability
impl Eq for PluginCapability
impl StructuralPartialEq for PluginCapability
Auto Trait Implementations§
impl Freeze for PluginCapability
impl RefUnwindSafe for PluginCapability
impl Send for PluginCapability
impl Sync for PluginCapability
impl Unpin for PluginCapability
impl UnsafeUnpin for PluginCapability
impl UnwindSafe for PluginCapability
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