pub enum LatexError {
    NotExisting,
    NotLoaded,
}Expand description
An error that might occur when rendering LaTeX expressions
Variants§
NotExisting
The specified LaTeX expression wasn’t registered. This error should be impossible to get,
as to get it you need an invalid index. See LatexIdx
NotLoaded
The LaTeX document hasn’t been rendered yet. Run the render_all_equations
Trait Implementations§
Source§impl Debug for LatexError
 
impl Debug for LatexError
Source§impl PartialEq for LatexError
 
impl PartialEq for LatexError
impl StructuralPartialEq for LatexError
Auto Trait Implementations§
impl Freeze for LatexError
impl RefUnwindSafe for LatexError
impl Send for LatexError
impl Sync for LatexError
impl Unpin for LatexError
impl UnwindSafe for LatexError
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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more