-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New feature: actix-web support #135
Comments
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 11, 2018
It looks similar to the Rocket implementation, and functionally is also similar: a static, syncronous response for PreEscaped<String> Refs lambda-fairy#135
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 11, 2018
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 11, 2018
Life's easy when you're on the heap. Refs lambda-fairy#135
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 11, 2018
It looks similar to the Rocket implementation, and functionally is also similar: a syncronous response for PreEscaped<String> Refs lambda-fairy#135
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 11, 2018
It looks similar to the Rocket implementation, and functionally is also similar: a syncronous response for PreEscaped<String> Refs lambda-fairy#135
anxiousmodernman
added a commit
to anxiousmodernman/maud
that referenced
this issue
Jun 12, 2018
It looks similar to the Rocket implementation, and functionally is also similar: a syncronous response for PreEscaped<String> Refs lambda-fairy#135
lambda-fairy
pushed a commit
that referenced
this issue
Jun 15, 2018
It looks similar to the Rocket implementation, and functionally is also similar: a syncronous response for PreEscaped<String> Refs #135
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm intrigued by the actix-web framework. It should be possible to implement their
Responder
trait and include it behind feature flagactix-web
in the manner of Rocket or Iron.Some documentation on responses in actix-web:
Note the associated types in
Responder
:Error
andItem
. We can use their Error type, although we never have to actually return it.The text was updated successfully, but these errors were encountered: