Giter Site home page Giter Site logo

Comments (5)

Manishearth avatar Manishearth commented on May 20, 2024

So basically suggest the usage of a union type instead of the trait object?

Yeah, I'm not sure what the heuristics should be either.

from rust-clippy.

jdm avatar jdm commented on May 20, 2024

I think @kmcallister is referring to fn foo<T: SomeTrait>(t: &T) vs. fn foo(t: &SomeTrait) rather than explicit ADTs.

from rust-clippy.

Manishearth avatar Manishearth commented on May 20, 2024

Oh, I see.

from rust-clippy.

coder543 avatar coder543 commented on May 20, 2024

It seems like the main requirement for this would be to look at every function declaration, such as fn foo(t: &SomeTrait), and then be able to determine that SomeTrait is a trait and not a struct or enum. Once you have that info, you can choose to emit a lint or not.

Maybe the RLS could help with this? not sure.

from rust-clippy.

oli-obk avatar oli-obk commented on May 20, 2024

Detecting whether the argument is a trait object is easy. Since any generic type with a bound on a trait can be turned into a trait object of that type, this would be a trivial transformation. The issues with transforming a random function from dynamic dispatch to static dispatch is that someone might be using the function by passing it a trait object. They might not have a chance to do anything else. So we'd also need to add a ?Sized bound.

In gennral you can convert any fn foo(t: &SomeTrait) to fn foo<T: SomeTrait + ?Sized>(t: &T) without breaking anything.

Additionally there are cases where we do not want to use static dispatch in order to reduce compiletimes of downstream crates.

from rust-clippy.

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.