• TehPers@beehaw.org
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 days ago

      Mentioned this to the other commenter, but this doesn’t use the type system to enforce the mutual exclusivity constraint. In Rust, the main way to do that via the type system is through enums.

      • Ephera@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        ·
        7 days ago

        Ah, fair enough. Not sure how to do that then.

        I was gonna say, I feel like the current method does a good enough job documenting that validation has happened, but I guess you do want it reflected in the structure of the type, so that the code that takes the information from the struct can safely make the assumption that some of the options don’t exist. And then, yeah, it would be nice to not need a separate parsing step for that.