pub struct DesignRequest {Show 14 fields
pub request_id: String,
pub tenant_id: String,
pub submitted_by: Option<String>,
pub agent_name: Option<String>,
pub agent_description: Option<String>,
pub agent_role: Option<String>,
pub tools: Option<Vec<String>>,
pub parent_agent_id: Option<String>,
pub rationale: Option<String>,
pub status: DesignRequestStatus,
pub proposal_id: Option<String>,
pub spawned_agent_id: Option<String>,
pub created_at: String,
pub updated_at: String,
}Expand description
Governance-builder request to design a new agent (packages/governance/builder-flow.ts).
Fields§
§request_id: String§tenant_id: String§submitted_by: Option<String>§agent_name: Option<String>§agent_description: Option<String>§agent_role: Option<String>§tools: Option<Vec<String>>§parent_agent_id: Option<String>§rationale: Option<String>§status: DesignRequestStatus§proposal_id: Option<String>Set once the request enters a vote.
spawned_agent_id: Option<String>Set once the approved design has been created.
created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for DesignRequest
impl Clone for DesignRequest
Source§fn clone(&self) -> DesignRequest
fn clone(&self) -> DesignRequest
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 DesignRequest
impl Debug for DesignRequest
Source§impl Default for DesignRequest
impl Default for DesignRequest
Source§fn default() -> DesignRequest
fn default() -> DesignRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DesignRequest
impl<'de> Deserialize<'de> for DesignRequest
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
Source§impl PartialEq for DesignRequest
impl PartialEq for DesignRequest
Source§impl Serialize for DesignRequest
impl Serialize for DesignRequest
impl StructuralPartialEq for DesignRequest
Auto Trait Implementations§
impl Freeze for DesignRequest
impl RefUnwindSafe for DesignRequest
impl Send for DesignRequest
impl Sync for DesignRequest
impl Unpin for DesignRequest
impl UnsafeUnpin for DesignRequest
impl UnwindSafe for DesignRequest
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