Skip to main content

TexError

Trait TexError 

Source
pub trait TexError: Debug {
    // Required methods
    fn kind(&self) -> Kind<'_>;
    fn title(&self) -> String;

    // Provided methods
    fn notes(&self) -> Vec<Note<'_>> { ... }
    fn source_annotation(&self) -> String { ... }
    fn default_source_annotation(&self) -> String { ... }
}

Required Methods§

Source

fn kind(&self) -> Kind<'_>

Source

fn title(&self) -> String

Provided Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§