pub struct AgentDefinitionsResult {
pub active_agents: Vec<AgentDefinition>,
pub all_agents: Vec<AgentDefinition>,
pub failed_files: Vec<(String, String)>,
pub allowed_agent_types: Option<Vec<String>>,
}Expand description
Result from loading agent definitions.
Fields§
§active_agents: Vec<AgentDefinition>§all_agents: Vec<AgentDefinition>§failed_files: Vec<(String, String)>§allowed_agent_types: Option<Vec<String>>Auto Trait Implementations§
impl Freeze for AgentDefinitionsResult
impl !RefUnwindSafe for AgentDefinitionsResult
impl Send for AgentDefinitionsResult
impl Sync for AgentDefinitionsResult
impl Unpin for AgentDefinitionsResult
impl UnsafeUnpin for AgentDefinitionsResult
impl !UnwindSafe for AgentDefinitionsResult
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