Code Monkey home page Code Monkey logo

Comments (2)

djmitche avatar djmitche commented on June 19, 2024 1

Thanks for bringing this up! We don't mention the orphan rule at all, in fact.

This is not a violation of the orphan rule, since the anyhow crate both defines the Context trait and implements it for Option and Result.

But how does rust find the context method? for result in your example? What if some other crate also implemented a trait with a context method that applied to Result? The use anyhow::Context is what signals that this module wishes to use anyhow::Context::context here. That's a bit awkward since it requires useing the trait name, while only the method name appears in the source. I've seen a few people disambiguate this by putting the use statement closer to the method call:

fn main() {
    use anyhow::Context;
    let result = fs::File::open("config.dat");
    print_type_of("result", &result);
    let result_ctx = result.context("Failed to open");
    print_type_of("result_ctx", &result_ctx);
}

but I don't think that is a common approach.

Do you want to make a PR to add some content regarding the orphan rule and this "use trait" syntax?

from comprehensive-rust.

proski avatar proski commented on June 19, 2024

OK, I'll make a PR. Thank you for the explanation!

from comprehensive-rust.

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.