pub trait SemanticsErrorContext {
    type InnerType;

    fn context(&self, line: u32, message: &str) -> Result<Self::InnerType>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors