pub struct StreamSplitOutcome {
pub pages: Vec<StreamedSplitPage>,
pub latexml_pis: Vec<String>,
pub picture_xml: String,
}Expand description
Result of a successful streaming split.
Fields§
§pages: Vec<StreamedSplitPage>Pages in pre-order; [0] is the root page.
latexml_pis: Vec<String>Bodies of every <?latexml …?> PI (for the ar5iv literal-intent sniff).
picture_xml: StringConcatenated serializations of every ltx:picture subtree, ready for
the driver’s extract_svg_fragments.
Auto Trait Implementations§
impl Freeze for StreamSplitOutcome
impl RefUnwindSafe for StreamSplitOutcome
impl Send for StreamSplitOutcome
impl Sync for StreamSplitOutcome
impl Unpin for StreamSplitOutcome
impl UnsafeUnpin for StreamSplitOutcome
impl UnwindSafe for StreamSplitOutcome
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