pub enum EngineError {
UnsupportedSuffix(String),
}Variants§
UnsupportedSuffix(String)
The stored String is the complete, ready-to-print message —
mirrors api.py::UnsupportedSuffixError’s
f"unsupported file extension: {path.name!r}. Supported: .tex, .ltx, .bib, .Rnw, .Rmd (case-insensitive)." text exactly.
jsslint-cli prints it verbatim (destructures the payload and
formats it directly rather than going through Display).
Trait Implementations§
Source§impl Debug for EngineError
impl Debug for EngineError
Auto Trait Implementations§
impl Freeze for EngineError
impl RefUnwindSafe for EngineError
impl Send for EngineError
impl Sync for EngineError
impl Unpin for EngineError
impl UnsafeUnpin for EngineError
impl UnwindSafe for EngineError
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