pub enum ToolKind {
Mcp,
Builtin,
Composio,
App,
CoreApi,
}Expand description
Source plane of a tool. Serializes lowercase: mcp|builtin|composio|app,
plus core-api for Core’s own HTTP endpoints exposed as agent-drivable tools.
Variants§
Mcp
Builtin
Composio
App
CoreApi
A Core HTTP endpoint (OpenAPI-derived) callable by an agent over loopback.
Explicit rename so the wire value is the hyphenated core-api, not the
rename_all = "lowercase" default coreapi.
Implementations§
Trait Implementations§
impl Copy for ToolKind
Source§impl<'de> Deserialize<'de> for ToolKind
impl<'de> Deserialize<'de> for ToolKind
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
impl Eq for ToolKind
impl StructuralPartialEq for ToolKind
Auto Trait Implementations§
impl Freeze for ToolKind
impl RefUnwindSafe for ToolKind
impl Send for ToolKind
impl Sync for ToolKind
impl Unpin for ToolKind
impl UnsafeUnpin for ToolKind
impl UnwindSafe for ToolKind
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