Giter Club home page Giter Club logo

Comments (2)

warner avatar warner commented on May 28, 2024

I'll add: in general, the client needs to ignore unrecognized message types and unknown fields inside known messages. This gives us some room for expansion in the future. The unit tests ought to signal an error if we receive unknown messages, but actual runtime code should ignore them. In Twisted I do this with a log.err() call, and the testing framework knows that anything written to the error log should flunk the test. And we test tolerance by asking the testing framework to selectively ignore those error messages in specific tests. I don't know the Rust testing ecosystem well enough to suggest a technique or a library, but I'm sure one is out there somewhere.

from magic-wormhole.rs.

piegamesde avatar piegamesde commented on May 28, 2024

serde has a few options to future-proof deserialization:

  • deny_unknown_fields

    Always error during deserialization when encountering unknown fields. When this attribute is not present, by default unknown fields are ignored for self-describing formats like JSON.

    • So we don't need to do anything here for unknown attributes
  • For known optional attributes, use Optional<> or #[serde(default)]
  • For unknown enum variants, use #[serde(other)]. Sadly, there is no way to access that unknown value yet.
  • There are tricks to store all unmatched keys into a map for dynamic access (I'd have to look it up for an example)

from magic-wormhole.rs.

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.