pub struct JobSummary {
pub id: String,
pub status: String,
pub total_segments: usize,
pub succeeded: usize,
pub failed: usize,
pub needs_review: usize,
pub retry_pending: usize,
pub cached: usize,
pub retried: usize,
pub input_tokens: u64,
pub input_cached_tokens: u64,
pub output_tokens: u64,
}Fields§
§id: String§status: String§total_segments: usize§succeeded: usize§failed: usize§needs_review: usize§retry_pending: usize§cached: usize§retried: usize§input_tokens: u64§input_cached_tokens: u64§output_tokens: u64Trait Implementations§
Source§impl Clone for JobSummary
impl Clone for JobSummary
Source§fn clone(&self) -> JobSummary
fn clone(&self) -> JobSummary
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 JobSummary
impl Debug for JobSummary
Source§impl Default for JobSummary
impl Default for JobSummary
Source§fn default() -> JobSummary
fn default() -> JobSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for JobSummary
impl RefUnwindSafe for JobSummary
impl Send for JobSummary
impl Sync for JobSummary
impl Unpin for JobSummary
impl UnsafeUnpin for JobSummary
impl UnwindSafe for JobSummary
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