pub trait Context<T, E> { // Required method fn context(self, context: &'static str) -> Result<T, OrtError>; }
Wrap the error value with additional context.