Struct texlang::error::TracedTexError
source · pub struct TracedTexError {
pub error: Box<dyn TexError>,
pub stack_trace: Vec<StackTraceElement>,
pub token_traces: HashMap<Token, SourceCodeTrace>,
pub end_of_input_trace: Option<SourceCodeTrace>,
}
Expand description
A fully traced error
Note that serializing and deserializing this type results in type erasure. Also the serialization format is private. This is not by design: the minimal amount of work was done to make the type serializable, and future work to make this better is welcome!
Fields§
§error: Box<dyn TexError>
§stack_trace: Vec<StackTraceElement>
§token_traces: HashMap<Token, SourceCodeTrace>
§end_of_input_trace: Option<SourceCodeTrace>
Trait Implementations§
source§impl Debug for TracedTexError
impl Debug for TracedTexError
source§impl<'de> Deserialize<'de> for TracedTexError
impl<'de> Deserialize<'de> for TracedTexError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for TracedTexError
impl Display for TracedTexError
Auto Trait Implementations§
impl Freeze for TracedTexError
impl !RefUnwindSafe for TracedTexError
impl !Send for TracedTexError
impl !Sync for TracedTexError
impl Unpin for TracedTexError
impl !UnwindSafe for TracedTexError
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