Struct texlang::error::UndefinedCommandError
source · pub struct UndefinedCommandError {
pub token: Token,
pub close_names: Vec<WordDiff>,
}
Expand description
Concrete error for the case when a command is undefined.
This error is returned when a control sequence or active character is not defined.
Fields§
§token: Token
The token that was referred to an undefined command.
close_names: Vec<WordDiff>
Control sequences that are spelled similarly to the token.
Implementations§
source§impl UndefinedCommandError
impl UndefinedCommandError
sourcepub fn new<S>(vm: &VM<S>, token: Token) -> UndefinedCommandError
pub fn new<S>(vm: &VM<S>, token: Token) -> UndefinedCommandError
Create a new undefined command error.
Trait Implementations§
source§impl Debug for UndefinedCommandError
impl Debug for UndefinedCommandError
source§impl TexError for UndefinedCommandError
impl TexError for UndefinedCommandError
Auto Trait Implementations§
impl Freeze for UndefinedCommandError
impl RefUnwindSafe for UndefinedCommandError
impl Send for UndefinedCommandError
impl Sync for UndefinedCommandError
impl Unpin for UndefinedCommandError
impl UnwindSafe for UndefinedCommandError
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