pub struct DbRunRecord {Show 13 fields
pub id: Option<Thing>,
pub run_id: String,
pub spec_digest: String,
pub git_sha: Option<String>,
pub agent_name: String,
pub tags: Value,
pub status: String,
pub total_events: u64,
pub final_state_digest: Option<String>,
pub duration_ms: u64,
pub success: bool,
pub created_at: DateTime<Utc>,
pub completed_at: Option<DateTime<Utc>>,
}Expand description
Run record - execution run metadata and state
Fields§
§id: Option<Thing>SurrealDB record ID
run_id: StringUnique run ID (UUID string)
spec_digest: StringAgent spec digest (SHA256)
git_sha: Option<String>Git SHA at time of run (optional)
agent_name: StringAgent name
Arbitrary tags (JSON)
status: StringRun status: “RUNNING” | “COMPLETED” | “FAILED” | “CANCELLED”
total_events: u64Total events recorded
final_state_digest: Option<String>Final state digest (if completed)
duration_ms: u64Duration in milliseconds
success: boolWhether run succeeded
created_at: DateTime<Utc>Created timestamp
completed_at: Option<DateTime<Utc>>Completed timestamp (if terminal)
Implementations§
Source§impl RunRecord
impl RunRecord
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunRecord
impl<'de> Deserialize<'de> for RunRecord
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 RunRecord
impl RefUnwindSafe for RunRecord
impl Send for RunRecord
impl Sync for RunRecord
impl Unpin for RunRecord
impl UnsafeUnpin for RunRecord
impl UnwindSafe for RunRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more