pub struct RunningEntry {Show 16 fields
pub identifier: String,
pub issue: Issue,
pub session_id: Option<String>,
pub codex_app_server_pid: Option<String>,
pub last_codex_message: Option<String>,
pub last_codex_event: Option<String>,
pub last_codex_timestamp: Option<DateTime<Utc>>,
pub codex_input_tokens: u64,
pub codex_output_tokens: u64,
pub codex_total_tokens: u64,
pub last_reported_input_tokens: u64,
pub last_reported_output_tokens: u64,
pub last_reported_total_tokens: u64,
pub retry_attempt: Option<u32>,
pub started_at: DateTime<Utc>,
pub turn_count: u32,
}Expand description
A running entry in the orchestrator state.
Fields§
§identifier: String§issue: Issue§session_id: Option<String>§codex_app_server_pid: Option<String>§last_codex_message: Option<String>§last_codex_event: Option<String>§last_codex_timestamp: Option<DateTime<Utc>>§codex_input_tokens: u64§codex_output_tokens: u64§codex_total_tokens: u64§last_reported_input_tokens: u64§last_reported_output_tokens: u64§last_reported_total_tokens: u64§retry_attempt: Option<u32>§started_at: DateTime<Utc>§turn_count: u32Trait Implementations§
Source§impl Clone for RunningEntry
impl Clone for RunningEntry
Source§fn clone(&self) -> RunningEntry
fn clone(&self) -> RunningEntry
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 RunningEntry
impl Debug for RunningEntry
Source§impl<'de> Deserialize<'de> for RunningEntry
impl<'de> Deserialize<'de> for RunningEntry
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 RunningEntry
impl RefUnwindSafe for RunningEntry
impl Send for RunningEntry
impl Sync for RunningEntry
impl Unpin for RunningEntry
impl UnsafeUnpin for RunningEntry
impl UnwindSafe for RunningEntry
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