pub enum TypstError {
Frontmatter(CoreError),
Compilation(String),
Render(String),
}Expand description
Typst parsing errors.
Variants§
Frontmatter(CoreError)
Failed to parse frontmatter.
Compilation(String)
Typst compilation error.
Render(String)
SVG rendering error.
Trait Implementations§
Source§impl Debug for TypstError
impl Debug for TypstError
Source§impl Display for TypstError
impl Display for TypstError
Source§impl Error for TypstError
impl Error for TypstError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<CoreError> for TypstError
impl From<CoreError> for TypstError
Source§impl From<TypstError> for ParserError
impl From<TypstError> for ParserError
Source§fn from(source: TypstError) -> Self
fn from(source: TypstError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TypstError
impl !RefUnwindSafe for TypstError
impl Send for TypstError
impl Sync for TypstError
impl Unpin for TypstError
impl !UnwindSafe for TypstError
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