Trait DuatError

Source
pub trait DuatError {
    // Required method
    fn into_text(self) -> Box<Text>;
}
Expand description

An error that can be displayed as Text in Duat

Required Methods§

Source

fn into_text(self) -> Box<Text>

Implementors§

Source§

impl<E> DuatError for Error<E>