pub struct ThreadRuntimeOverlay {Show 19 fields
pub path: Option<PathBuf>,
pub execution_path: Option<PathBuf>,
pub materialized_path: Option<PathBuf>,
pub session_id: Option<String>,
pub heddle_session_id: Option<String>,
pub provider: Option<String>,
pub model: Option<String>,
pub harness: Option<String>,
pub thinking_level: Option<String>,
pub native_actor_key: Option<String>,
pub native_parent_actor_key: Option<String>,
pub probe_source: Option<String>,
pub probe_confidence: Option<f32>,
pub usage_summary: Option<AgentUsageSummary>,
pub last_progress_at: Option<DateTime<Utc>>,
pub report_flush_state: Option<String>,
pub attach_reason: Option<String>,
pub thread_mode: Option<ThreadMode>,
pub thread_state: Option<ThreadState>,
}Fields§
§path: Option<PathBuf>§execution_path: Option<PathBuf>§materialized_path: Option<PathBuf>§session_id: Option<String>§heddle_session_id: Option<String>§provider: Option<String>§model: Option<String>§harness: Option<String>§thinking_level: Option<String>§native_actor_key: Option<String>§native_parent_actor_key: Option<String>§probe_source: Option<String>§probe_confidence: Option<f32>§usage_summary: Option<AgentUsageSummary>§last_progress_at: Option<DateTime<Utc>>§report_flush_state: Option<String>§attach_reason: Option<String>§thread_mode: Option<ThreadMode>§thread_state: Option<ThreadState>Trait Implementations§
Source§impl Clone for ThreadRuntimeOverlay
impl Clone for ThreadRuntimeOverlay
Source§fn clone(&self) -> ThreadRuntimeOverlay
fn clone(&self) -> ThreadRuntimeOverlay
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 ThreadRuntimeOverlay
impl Debug for ThreadRuntimeOverlay
Source§impl Default for ThreadRuntimeOverlay
impl Default for ThreadRuntimeOverlay
Source§fn default() -> ThreadRuntimeOverlay
fn default() -> ThreadRuntimeOverlay
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThreadRuntimeOverlay
impl<'de> Deserialize<'de> for ThreadRuntimeOverlay
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 ThreadRuntimeOverlay
impl RefUnwindSafe for ThreadRuntimeOverlay
impl Send for ThreadRuntimeOverlay
impl Sync for ThreadRuntimeOverlay
impl Unpin for ThreadRuntimeOverlay
impl UnsafeUnpin for ThreadRuntimeOverlay
impl UnwindSafe for ThreadRuntimeOverlay
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