pub enum CatalogCandidate {
McpServer(CatalogMcpServerCandidate),
AiSkill(CatalogAiSkillCandidate),
}Expand description
One inert catalog result, represented as an MCP server or discovery-only AI skill variant so kind, media type, provenance, and installability 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)
Trait Implementations§
Source§impl Clone for CatalogCandidate
impl Clone for CatalogCandidate
Source§fn clone(&self) -> CatalogCandidate
fn clone(&self) -> CatalogCandidate
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 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