Giter VIP home page Giter VIP logo

alexa_rust's People

Contributors

a5an0 avatar arienmalec avatar eazar001 avatar tarkah avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

alexa_rust's Issues

ResolutionsPerAuthority type fails to deserialize when there is no match

It is common on failed matches for Alexa to send a request that looks like:

...
  "resolutionsPerAuthority": [
      {
          "authority": "amzn1.er-authority.echo-sdk.amzn1.ask.skill....",
          "status": {
              "code": "ER_SUCCESS_NO_MATCH"
          }
      }
  ]
...

Attempting to deserialize this to the types in this crate will give the error:

Error("missing field `values`", line: 0, column: 0)

Response struct fields are all private, making response structs difficult to inspect and test

Thanks for the library. I'm new to Rust so forgive me if I'm missing something.

All the fields for all of the structs in response.rs are private, and none of the structs derive Eq or PartialEq. This makes it difficult to test functions that return Responses, e.g. attempting to test your example hello world function:

assert_eq!(Response::simple("hello", "hello world"), handle_hello().unwrap())

Fails with "error[E0369]: binary operation == cannot be applied to type alexa_sdk::Response"

and

assert_eq!("hello world", &handle_hello().unwrap().body.output_speech.unwrap().text.unwrap());

fails with "error[E0616]: field body of struct alexa_sdk::Response is private".

Since all of these structs are expected to be constructed by the user code, and are directly serialized into stable Alexa API response types. I would expect the fields to be public. It would also be a nice convenience if they derived Eq.

lambda! macro no longer exists

Hello,

As of version 0.3.0 of lambda_runtime, its lambda! macro no longer exists. This means that the example code in README.md no longer works. Please could you update it to be compatible with the latest version of lambda_runtime? Thank you.

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.