#[non_exhaustive]pub enum FormatPreloadError {
InputRejected {
name: String,
},
Aborted {
name: String,
status: Option<i32>,
},
Resource {
name: String,
resource: String,
},
Transcript {
name: String,
message: String,
},
}Expand description
Error encountered while preloading format resources into the generated engine.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InputRejected
The generated engine rejected the given input file.
Aborted
The generated engine aborted before completing initialization.
Fields
Resource
A required resource could not be loaded during preload.
Fields
Transcript
The engine transcript contained a TeX error during preload.
Trait Implementations§
Source§impl Clone for FormatPreloadError
impl Clone for FormatPreloadError
Source§impl Debug for FormatPreloadError
impl Debug for FormatPreloadError
impl Eq for FormatPreloadError
Source§impl PartialEq for FormatPreloadError
impl PartialEq for FormatPreloadError
impl StructuralPartialEq for FormatPreloadError
Auto Trait Implementations§
impl Freeze for FormatPreloadError
impl RefUnwindSafe for FormatPreloadError
impl Send for FormatPreloadError
impl Sync for FormatPreloadError
impl Unpin for FormatPreloadError
impl UnsafeUnpin for FormatPreloadError
impl UnwindSafe for FormatPreloadError
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