pub struct SummarizationProgress {
pub stage: String,
pub stage_index: usize,
pub stage_count: usize,
pub estimated_input_tokens: u32,
pub requested_output_tokens: u32,
pub safe_request_tokens: u32,
pub model_context_tokens: u32,
}Fields§
§stage: String§stage_index: usize§stage_count: usize§estimated_input_tokens: u32§requested_output_tokens: u32§safe_request_tokens: u32§model_context_tokens: u32Trait Implementations§
Source§impl Clone for SummarizationProgress
impl Clone for SummarizationProgress
Source§fn clone(&self) -> SummarizationProgress
fn clone(&self) -> SummarizationProgress
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 moreAuto Trait Implementations§
impl Freeze for SummarizationProgress
impl RefUnwindSafe for SummarizationProgress
impl Send for SummarizationProgress
impl Sync for SummarizationProgress
impl Unpin for SummarizationProgress
impl UnsafeUnpin for SummarizationProgress
impl UnwindSafe for SummarizationProgress
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