pub struct ExtractionResult {
pub chunk: Chunk,
pub root_refs: Vec<Result<Ref, ExtractionError>>,
pub page_tree_parent_ref: Ref,
}Expand description
The result of an extraction.
Fields§
§chunk: ChunkThe chunk containing all objects as well as their dependencies.
root_refs: Vec<Result<Ref, ExtractionError>>The root references of the pages/XObject, one for each extraction query.
page_tree_parent_ref: RefThe reference to the page tree parent that was generated.
Auto Trait Implementations§
impl Freeze for ExtractionResult
impl RefUnwindSafe for ExtractionResult
impl Send for ExtractionResult
impl Sync for ExtractionResult
impl Unpin for ExtractionResult
impl UnwindSafe for ExtractionResult
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