pub struct AgentConfig {
pub name: String,
pub capabilities: Vec<String>,
pub acceleration_factor: u32,
pub parallel_universes: u32,
}Expand description
Configuration for an AI agent
Fieldsยง
ยงname: Stringยงcapabilities: Vec<String>ยงacceleration_factor: u32ยงparallel_universes: u32Implementationsยง
Sourceยงimpl AgentConfig
impl AgentConfig
Trait Implementationsยง
Sourceยงimpl Clone for AgentConfig
impl Clone for AgentConfig
Sourceยงfn clone(&self) -> AgentConfig
fn clone(&self) -> AgentConfig
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 moreAuto Trait Implementationsยง
impl Freeze for AgentConfig
impl RefUnwindSafe for AgentConfig
impl Send for AgentConfig
impl Sync for AgentConfig
impl Unpin for AgentConfig
impl UnwindSafe for AgentConfig
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