pub struct RunRecord {
pub id: String,
pub agent_id: String,
pub model: String,
pub max_steps: usize,
pub status: String,
pub input: Value,
pub context: Value,
pub step_count: usize,
pub pause: Option<HumanPause>,
pub stop_reason: Option<String>,
pub created_at_ms: u64,
pub updated_at_ms: u64,
}Fields§
§id: String§agent_id: String§model: String§max_steps: usize§status: String§input: Value§context: Value§step_count: usize§pause: Option<HumanPause>§stop_reason: Option<String>§created_at_ms: u64§updated_at_ms: u64Trait 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
impl StructuralPartialEq for RunRecord
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