pub enum SkillCapability {
ReadFile,
ListTools,
Search,
WriteFile,
ExecuteSafe,
NetworkHttp,
}Expand description
MCP capabilities a skill may declare it requires. Mirrors the six
capabilities defined in mur-commander’s engine/src/mcp/trust.rs.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SkillCapability
impl Clone for SkillCapability
Source§fn clone(&self) -> SkillCapability
fn clone(&self) -> SkillCapability
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 SkillCapability
impl Debug for SkillCapability
Source§impl<'de> Deserialize<'de> for SkillCapability
impl<'de> Deserialize<'de> for SkillCapability
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for SkillCapability
impl Display for SkillCapability
Source§impl FromStr for SkillCapability
impl FromStr for SkillCapability
Source§impl Hash for SkillCapability
impl Hash for SkillCapability
Source§impl Ord for SkillCapability
impl Ord for SkillCapability
Source§fn cmp(&self, other: &SkillCapability) -> Ordering
fn cmp(&self, other: &SkillCapability) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SkillCapability
impl PartialEq for SkillCapability
Source§fn eq(&self, other: &SkillCapability) -> bool
fn eq(&self, other: &SkillCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SkillCapability
impl PartialOrd for SkillCapability
Source§impl Serialize for SkillCapability
impl Serialize for SkillCapability
impl Copy for SkillCapability
impl Eq for SkillCapability
impl StructuralPartialEq for SkillCapability
Auto Trait Implementations§
impl Freeze for SkillCapability
impl RefUnwindSafe for SkillCapability
impl Send for SkillCapability
impl Sync for SkillCapability
impl Unpin for SkillCapability
impl UnsafeUnpin for SkillCapability
impl UnwindSafe for SkillCapability
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.