pub struct ExtractedResult {
pub content: String,
pub original_tokens_est: u32,
pub extracted_tokens_est: u32,
}Expand description
The result of semantic extraction.
Fields§
§content: StringThe condensed, task-relevant content.
original_tokens_est: u32Estimated token count of the pre-extraction content.
extracted_tokens_est: u32Estimated token count of the extracted content.
Trait Implementations§
Source§impl Clone for ExtractedResult
impl Clone for ExtractedResult
Source§fn clone(&self) -> ExtractedResult
fn clone(&self) -> ExtractedResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtractedResult
impl RefUnwindSafe for ExtractedResult
impl Send for ExtractedResult
impl Sync for ExtractedResult
impl Unpin for ExtractedResult
impl UnsafeUnpin for ExtractedResult
impl UnwindSafe for ExtractedResult
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