pub struct JobOutcome {
pub schedule_name: String,
pub success: bool,
pub turns: usize,
pub cost_usd: f64,
pub response_summary: String,
pub session_id: String,
}Expand description
Outcome of a single scheduled run.
Fields§
§schedule_name: String§success: bool§turns: usize§cost_usd: f64§response_summary: String§session_id: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for JobOutcome
impl RefUnwindSafe for JobOutcome
impl Send for JobOutcome
impl Sync for JobOutcome
impl Unpin for JobOutcome
impl UnsafeUnpin for JobOutcome
impl UnwindSafe for JobOutcome
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