pub enum CatalogCandidate {
McpServer(CatalogMcpServerCandidate),
AiSkill(CatalogAiSkillCandidate),
Plugin(CatalogAgentPluginCandidate),
}Expand description
One inert catalog result, represented as an MCP server, discovery-only AI skill, or opt-in Agent Plugin variant so kind, media type, provenance, and available operations cannot contradict each other.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
McpServer(CatalogMcpServerCandidate)
AiSkill(CatalogAiSkillCandidate)
Plugin(CatalogAgentPluginCandidate)
Trait Implementations§
Source§impl Clone for CatalogCandidate
impl Clone for CatalogCandidate
Source§impl Debug for CatalogCandidate
impl Debug for CatalogCandidate
Source§impl<'de> Deserialize<'de> for CatalogCandidate
impl<'de> Deserialize<'de> for CatalogCandidate
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
Auto Trait Implementations§
impl Freeze for CatalogCandidate
impl RefUnwindSafe for CatalogCandidate
impl Send for CatalogCandidate
impl Sync for CatalogCandidate
impl Unpin for CatalogCandidate
impl UnsafeUnpin for CatalogCandidate
impl UnwindSafe for CatalogCandidate
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