pub struct FactoryAgentSummary {Show 13 fields
pub active_ms: i64,
pub activity: Option<String>,
pub agent_id: String,
pub agent_type: String,
pub completed_at: Option<i64>,
pub label: String,
pub phase_id: Option<String>,
pub requested_model: Option<String>,
pub resolved_model: Option<String>,
pub run_id: String,
pub started_at: Option<i64>,
pub status: String,
pub tool_call_id: String,
}Expand description
Prompt-safe durable identity and live status for a direct factory agent.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§active_ms: i64§activity: Option<String>§agent_id: String§agent_type: String§completed_at: Option<i64>§label: String§phase_id: Option<String>§requested_model: Option<String>§resolved_model: Option<String>§run_id: String§started_at: Option<i64>§status: String§tool_call_id: StringTrait Implementations§
Source§impl Clone for FactoryAgentSummary
impl Clone for FactoryAgentSummary
Source§fn clone(&self) -> FactoryAgentSummary
fn clone(&self) -> FactoryAgentSummary
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 FactoryAgentSummary
impl Debug for FactoryAgentSummary
Source§impl Default for FactoryAgentSummary
impl Default for FactoryAgentSummary
Source§fn default() -> FactoryAgentSummary
fn default() -> FactoryAgentSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryAgentSummary
impl<'de> Deserialize<'de> for FactoryAgentSummary
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 FactoryAgentSummary
impl RefUnwindSafe for FactoryAgentSummary
impl Send for FactoryAgentSummary
impl Sync for FactoryAgentSummary
impl Unpin for FactoryAgentSummary
impl UnsafeUnpin for FactoryAgentSummary
impl UnwindSafe for FactoryAgentSummary
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