Trait texlang::error::EndOfInputError

source ·
pub trait EndOfInputError: Debug + 'static {
    // Required method
    fn doing(&self) -> String;

    // Provided method
    fn notes(&self) -> Vec<Note> { ... }
}
Expand description

Implementations of this trait describe an error in which in the input ended prematurely.

Required Methods§

source

fn doing(&self) -> String

Provided Methods§

source

fn notes(&self) -> Vec<Note>

Implementors§