pub struct AgentDefinitions {
pub active_agents: Vec<Value>,
pub all_agents: Vec<Value>,
pub allowed_agent_types: Option<Vec<String>>,
}Expand description
Agent definitions
Fields§
§active_agents: Vec<Value>§all_agents: Vec<Value>§allowed_agent_types: Option<Vec<String>>Trait Implementations§
Source§impl Clone for AgentDefinitions
impl Clone for AgentDefinitions
Source§fn clone(&self) -> AgentDefinitions
fn clone(&self) -> AgentDefinitions
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 AgentDefinitions
impl Debug for AgentDefinitions
Source§impl Default for AgentDefinitions
impl Default for AgentDefinitions
Source§fn default() -> AgentDefinitions
fn default() -> AgentDefinitions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentDefinitions
impl<'de> Deserialize<'de> for AgentDefinitions
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 AgentDefinitions
impl RefUnwindSafe for AgentDefinitions
impl Send for AgentDefinitions
impl Sync for AgentDefinitions
impl Unpin for AgentDefinitions
impl UnsafeUnpin for AgentDefinitions
impl UnwindSafe for AgentDefinitions
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