Skip to main content

PostOutcome

Struct PostOutcome 

Source
pub struct PostOutcome {
    pub html: String,
    pub log: String,
    pub status_code: usize,
}
Expand description

Result of run_post_processing_logged: the serialized HTML plus the post-phase log text and status code, mirroring Perl LaTeXML.pm’s convert_post, which flushes the log AFTER post and folds the post status into the final max(core, post) verdict (L631-634).

Fields§

§html: String

Serialized post-processed output (same value as run_post_processing).

§log: String

Log text captured during the post phase only — Graphics/MathML/XSLT Info!/Warn!/post_error lines. Append to the core conversion log.

§status_code: usize

Status code read from the shared REPORT counter AFTER post. Because the counter is NOT reset between core and post, this is already the combined core+post code; callers still max() it with the core code as a belt-and-suspenders guard for paths that force a fatal outside REPORT (e.g. a catch_unwind-trapped panic).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.