• Ephera@lemmy.ml
    link
    fedilink
    arrow-up
    6
    ·
    7 months ago

    Yeah, Rust can’t have proper reflection, since there’s no external runtime environment that keeps track of your state. Any such smartness either has to be compiled-in (which is how std::any and macros work) or you can implement something to keep track of this state at runtime, as if you were partially building a runtime environment.

    • BatmanAoD@programming.dev
      link
      fedilink
      arrow-up
      9
      ·
      7 months ago

      Minor point of clarification: it can’t have runtime reflection, but in principle it could have compile time reflection.

      • QuaternionsRock@lemmy.world
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        7 months ago

        And compile-time reflection will probably also continue to suck due to some irreconcilable limitations of type-safe generic specialization. Oh how I would love an equivalent to C++ template parameter packs…