Coder Social home page Coder Social logo

Comments (3)

dtolnay avatar dtolnay commented on July 20, 2024 3

Our "context" works a bit differently than failure's to support the interactions with downcasting, but you could accomplish exactly the same ErrorKind pattern using this extension trait:

// put this somewhere that's shared across all your error types

pub struct WithKind<K> {
    pub kind: K,
    pub source: anyhow::Error,
}

pub trait Kind {
    type Ok;
    fn kind<K>(self, kind: K) -> Result<Self::Ok, WithKind<K>>;
}

impl<T, E> Kind for Result<T, E>
where
    E: Into<anyhow::Error>,
{
    type Ok = T;
    fn kind<K>(self, kind: K) -> Result<T, WithKind<K>> {
        self.map_err(|e| WithKind {
            kind,
            source: e.into(),
        })
    }
}

Then do everything in the link:

use thiserror::Error;

#[derive(Error, Debug)]
#[error("{kind}")]
pub struct Error {
    kind: ErrorKind,
    source: anyhow::Error,
}

#[derive(Error, Debug, Copy, Clone, Eq, PartialEq)]
pub enum ErrorKind {
    #[error("network failure")]
    NetworkFailure,
}

impl Error {
    pub fn kind(&self) -> ErrorKind {
        self.kind
    }
}

impl From<WithKind<ErrorKind>> for Error {
    fn from(w: WithKind<ErrorKind>) -> Self {
        Error {
            kind: w.kind,
            source: w.source,
        }
    }
}

and it gets used as:

use std::io;

fn inner() -> Result<(), io::Error> {
    Err(io::Error::new(io::ErrorKind::Other, "inner did not work"))
}

fn outer() -> Result<(), crate::Error> {
    inner().kind(ErrorKind::NetworkFailure)?;
    Ok(())
}

fn main() -> Result<(), anyhow::Error> {
    outer()?;
    Ok(())
}

from anyhow.

vimmerru avatar vimmerru commented on July 20, 2024

Thanks! It works for me. One question why not just implement ResultExt::kind that will translate directly to Result<T, Error> like without WithKind proxy?

pub type Result<T> = std::result::Result<T, Error>;

pub trait ResultExt<T, E> {
    fn kind(self, kind: ErrorKind) -> Result<T>;
}

impl<T, E> ResultExt<T, E> for std::result::Result<T, E>
where
    E: std::error::Error + Send + Sync + 'static,
{
    fn kind(self, kind: ErrorKind) -> Result<T> {
        self.map_err(|e| Error {
            kind,
            source: e.into(),
        })
    }
}

from anyhow.

dtolnay avatar dtolnay commented on July 20, 2024

Your trait requires a different extension trait for every error type in your program. If your program only always uses one error type then maybe that's fine. But with my trait, downstream code is able to always import the same trait.

from anyhow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.