pub struct DesignSpawnAgentsParams {
pub workspace_id: String,
pub root_id: Option<String>,
pub scope_node_ids: Vec<String>,
pub prompt: Option<String>,
pub allow_patch: bool,
pub allow_export: bool,
pub require_review: bool,
}Fields§
§workspace_id: String§root_id: Option<String>§scope_node_ids: Vec<String>§prompt: Option<String>§allow_patch: bool§allow_export: bool§require_review: boolTrait Implementations§
Source§impl Clone for DesignSpawnAgentsParams
impl Clone for DesignSpawnAgentsParams
Source§fn clone(&self) -> DesignSpawnAgentsParams
fn clone(&self) -> DesignSpawnAgentsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DesignSpawnAgentsParams
impl Debug for DesignSpawnAgentsParams
Source§impl<'de> Deserialize<'de> for DesignSpawnAgentsParams
impl<'de> Deserialize<'de> for DesignSpawnAgentsParams
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 DesignSpawnAgentsParams
impl RefUnwindSafe for DesignSpawnAgentsParams
impl Send for DesignSpawnAgentsParams
impl Sync for DesignSpawnAgentsParams
impl Unpin for DesignSpawnAgentsParams
impl UnsafeUnpin for DesignSpawnAgentsParams
impl UnwindSafe for DesignSpawnAgentsParams
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