pub trait SemanticsErrorContext {
type InnerType;
// Required method
fn context(&self, line: u32, message: &str) -> Result<Self::InnerType>;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".