pub struct CrewConfig {
pub name: String,
pub agents: Vec<String>,
pub process_type: ProcessType,
pub manager: Option<String>,
pub max_iterations: Option<u32>,
pub verbose: bool,
}
Fields§
§name: String
§agents: Vec<String>
§process_type: ProcessType
§manager: Option<String>
§max_iterations: Option<u32>
§verbose: bool
Trait Implementations§
Source§impl Clone for CrewConfig
impl Clone for CrewConfig
Source§fn clone(&self) -> CrewConfig
fn clone(&self) -> CrewConfig
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 CrewConfig
impl Debug for CrewConfig
Source§impl<'de> Deserialize<'de> for CrewConfig
impl<'de> Deserialize<'de> for CrewConfig
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 CrewConfig
impl RefUnwindSafe for CrewConfig
impl Send for CrewConfig
impl Sync for CrewConfig
impl Unpin for CrewConfig
impl UnwindSafe for CrewConfig
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