pub struct PipelineStages {
pub xhtml: String,
pub text_elements: Vec<PdfTextElement>,
pub parsed_elements: Vec<ParsedPdfElement>,
pub graph: DocumentGraph,
}Expand description
Captured intermediate outputs from each pipeline stage Used for testing and diagnostics — lets you inspect/compare each boundary
Fields§
§xhtml: String§text_elements: Vec<PdfTextElement>§parsed_elements: Vec<ParsedPdfElement>§graph: DocumentGraphTrait Implementations§
Source§impl Clone for PipelineStages
impl Clone for PipelineStages
Source§fn clone(&self) -> PipelineStages
fn clone(&self) -> PipelineStages
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 PipelineStages
impl Debug for PipelineStages
Source§impl Serialize for PipelineStages
impl Serialize for PipelineStages
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for PipelineStages
impl RefUnwindSafe for PipelineStages
impl Send for PipelineStages
impl Sync for PipelineStages
impl Unpin for PipelineStages
impl UnsafeUnpin for PipelineStages
impl UnwindSafe for PipelineStages
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