pub struct ExtractedText {
pub full_text: String,
pub chunks: Vec<String>,
pub sections: Vec<TextSection>,
}Expand description
Texte extrait
Fields§
§full_text: StringTexte complet
chunks: Vec<String>Chunks pour embeddings
sections: Vec<TextSection>Sections avec headings
Trait Implementations§
Source§impl Clone for ExtractedText
impl Clone for ExtractedText
Source§fn clone(&self) -> ExtractedText
fn clone(&self) -> ExtractedText
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 ExtractedText
impl RefUnwindSafe for ExtractedText
impl Send for ExtractedText
impl Sync for ExtractedText
impl Unpin for ExtractedText
impl UnwindSafe for ExtractedText
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