EXRAFG37562NH775A4LDPP5FNKXLPLIZSJ3FCOBINUDKRFBJHCXAC
impl<T, E: StdError + Send + Sync + 'static> Context<T, E> for Result<T, E> {
fn context<C: Display + Send + Sync + 'static>(self, context: C) -> Result<T, Error> {
impl<T, E> Context<T, E> for Result<T, E>
where
E: StdError + Send + Sync + 'static,
{
fn context<C>(self, context: C) -> Result<T, Error>
where
C: Display + Send + Sync + 'static,
{