pub struct PdfTextExtraction {
pub runs: Vec<TextRun>,
}Expand description
All text runs collected from one page (or one whole document — the caller decides whether to merge across pages).
Fields§
§runs: Vec<TextRun>Implementations§
Trait Implementations§
Source§impl Clone for PdfTextExtraction
impl Clone for PdfTextExtraction
Source§fn clone(&self) -> PdfTextExtraction
fn clone(&self) -> PdfTextExtraction
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 PdfTextExtraction
impl Debug for PdfTextExtraction
Source§impl Default for PdfTextExtraction
impl Default for PdfTextExtraction
Source§fn default() -> PdfTextExtraction
fn default() -> PdfTextExtraction
Returns the “default value” for a type. Read more
Source§impl PartialEq for PdfTextExtraction
impl PartialEq for PdfTextExtraction
Source§fn eq(&self, other: &PdfTextExtraction) -> bool
fn eq(&self, other: &PdfTextExtraction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PdfTextExtraction
Auto Trait Implementations§
impl Freeze for PdfTextExtraction
impl RefUnwindSafe for PdfTextExtraction
impl Send for PdfTextExtraction
impl Sync for PdfTextExtraction
impl Unpin for PdfTextExtraction
impl UnsafeUnpin for PdfTextExtraction
impl UnwindSafe for PdfTextExtraction
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