Coder Social home page Coder Social logo

`?` on surf::Exception about anyhow HOT 3 CLOSED

abreis avatar abreis commented on August 20, 2024
`?` on surf::Exception

from anyhow.

Comments (3)

dtolnay avatar dtolnay commented on August 20, 2024 7

This is because Surf is using a silly choice of error type. :( http-rs/surf#86
Libraries should return errors that implement std::error::Error in order for ? to work, and Surf's does not.

For now you can work around this by avoiding ?:

use anyhow::{bail, Result};

async fn some_request() -> Result<()> {
    let _response = match surf::get("https://www.rust-lang.org").await {
        Ok(response) => response,
        Err(err) => bail!(err),
    };

    ...
}

from anyhow.

mchlrhw avatar mchlrhw commented on August 20, 2024 5

I know this is closed, but I found myself here recently so I thought I'd share another approach.
If you want to add a context to surf errors, or want to make use of ?, you can do:

use anyhow::{anyhow, Context, Result};

async fn some_request() -> Result<()> {
    let _response = surf::get("https://www.rust-lang.org")
        .await
        .map_err(|err| anyhow!(err)) // TODO: Remove me when surf 2.0 is released
        .context("Failed to fetch from rust-lang.org")?;

    ...
}

from anyhow.

abreis avatar abreis commented on August 20, 2024

Thanks!

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.