pub struct AgentCard {Show 14 fields
pub name: String,
pub description: String,
pub version: String,
pub supported_interfaces: Vec<AgentInterface>,
pub capabilities: AgentCapabilities,
pub default_input_modes: Vec<String>,
pub default_output_modes: Vec<String>,
pub skills: Vec<AgentSkill>,
pub provider: Option<AgentProvider>,
pub documentation_url: Option<String>,
pub icon_url: Option<String>,
pub security_schemes: Option<HashMap<String, SecurityScheme>>,
pub security_requirements: Option<Vec<SecurityRequirement>>,
pub signatures: Option<Vec<AgentCardSignature>>,
}Expand description
Self-describing manifest for an agent.
Fields§
§name: String§description: String§version: String§supported_interfaces: Vec<AgentInterface>§capabilities: AgentCapabilities§default_input_modes: Vec<String>§default_output_modes: Vec<String>§skills: Vec<AgentSkill>§provider: Option<AgentProvider>§documentation_url: Option<String>§icon_url: Option<String>§security_schemes: Option<HashMap<String, SecurityScheme>>§security_requirements: Option<Vec<SecurityRequirement>>§signatures: Option<Vec<AgentCardSignature>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AgentCard
impl<'de> Deserialize<'de> for AgentCard
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 StructuralPartialEq for AgentCard
Auto Trait Implementations§
impl Freeze for AgentCard
impl RefUnwindSafe for AgentCard
impl Send for AgentCard
impl Sync for AgentCard
impl Unpin for AgentCard
impl UnsafeUnpin for AgentCard
impl UnwindSafe for AgentCard
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