pub struct PageData {
pub number: u32,
pub width: f32,
pub height: f32,
pub text: Option<String>,
pub operations: Vec<ContentOperation>,
}Expand description
Page data during streaming
Fields§
§number: u32Page number (0-indexed)
width: f32Page width in points
height: f32Page height in points
text: Option<String>Extracted text (if any)
operations: Vec<ContentOperation>Content operations (if requested)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageData
impl RefUnwindSafe for PageData
impl Send for PageData
impl Sync for PageData
impl Unpin for PageData
impl UnwindSafe for PageData
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