pub enum CapabilityKind {
Mcp,
Tool,
Skill,
Cli,
}Expand description
Capability namespace interpreted by an embedding adapter.
Variants§
Mcp
A complete MCP server name.
Tool
An exact tool name.
Skill
An exact skill name.
Cli
The local command-line capability.
Trait Implementations§
Source§impl Clone for CapabilityKind
impl Clone for CapabilityKind
Source§fn clone(&self) -> CapabilityKind
fn clone(&self) -> CapabilityKind
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 moreimpl Copy for CapabilityKind
Source§impl Debug for CapabilityKind
impl Debug for CapabilityKind
impl Eq for CapabilityKind
Source§impl Ord for CapabilityKind
impl Ord for CapabilityKind
Source§fn cmp(&self, other: &CapabilityKind) -> Ordering
fn cmp(&self, other: &CapabilityKind) -> 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 CapabilityKind
impl PartialEq for CapabilityKind
Source§impl PartialOrd for CapabilityKind
impl PartialOrd for CapabilityKind
impl StructuralPartialEq for CapabilityKind
Auto Trait Implementations§
impl Freeze for CapabilityKind
impl RefUnwindSafe for CapabilityKind
impl Send for CapabilityKind
impl Sync for CapabilityKind
impl Unpin for CapabilityKind
impl UnsafeUnpin for CapabilityKind
impl UnwindSafe for CapabilityKind
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