pub struct DomainAgentMetadata {
pub domain: String,
pub name: String,
pub version: String,
pub capabilities: Vec<String>,
pub required_tools: Vec<String>,
pub optional_tools: Vec<String>,
}Expand description
Domain agent metadata
Fields§
§domain: StringDomain identifier
name: StringAgent name
version: StringAgent version
capabilities: Vec<String>Supported capabilities
required_tools: Vec<String>Required tools
optional_tools: Vec<String>Optional tools
Trait Implementations§
Source§impl Clone for DomainAgentMetadata
impl Clone for DomainAgentMetadata
Source§fn clone(&self) -> DomainAgentMetadata
fn clone(&self) -> DomainAgentMetadata
Returns a duplicate of the value. Read more
1.0.0 · 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 DomainAgentMetadata
impl Debug for DomainAgentMetadata
Source§impl<'de> Deserialize<'de> for DomainAgentMetadata
impl<'de> Deserialize<'de> for DomainAgentMetadata
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 DomainAgentMetadata
impl RefUnwindSafe for DomainAgentMetadata
impl Send for DomainAgentMetadata
impl Sync for DomainAgentMetadata
impl Unpin for DomainAgentMetadata
impl UnwindSafe for DomainAgentMetadata
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