pub struct AgentCard {Show 15 fields
pub name: String,
pub description: String,
pub supported_interfaces: Vec<AgentInterface>,
pub version: String,
pub icon_url: Option<String>,
pub provider: Option<AgentProvider>,
pub documentation_url: Option<String>,
pub capabilities: AgentCapabilities,
pub security_schemes: Option<HashMap<String, SecurityScheme>>,
pub security: Option<Vec<HashMap<String, Vec<String>>>>,
pub default_input_modes: Vec<String>,
pub default_output_modes: Vec<String>,
pub skills: Vec<AgentSkill>,
pub supports_authenticated_extended_card: Option<bool>,
pub signatures: Option<Vec<AgentCardSignature>>,
}Fields§
§name: String§description: String§supported_interfaces: Vec<AgentInterface>§version: String§icon_url: Option<String>§provider: Option<AgentProvider>§documentation_url: Option<String>§capabilities: AgentCapabilities§security_schemes: Option<HashMap<String, SecurityScheme>>§security: Option<Vec<HashMap<String, Vec<String>>>>§default_input_modes: Vec<String>§default_output_modes: Vec<String>§skills: Vec<AgentSkill>§supports_authenticated_extended_card: Option<bool>§signatures: Option<Vec<AgentCardSignature>>Implementations§
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