-
-
Notifications
You must be signed in to change notification settings - Fork 304
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
Added ability to return an error for failed SecuritySchema
checker.
#625
Conversation
Looks great, can you add a test case to here? 🙂 |
Pushed those tests 🤖. Was waiting for feedback before commiting. Also updated security scheme markup doc ✨ |
good job, thank you! ❤️ |
format code with |
Done. Had some quirks with git status :D |
This problem should not exist, but in order to reduce compilation time, it is still hoped that the |
It does feel silly having it there, I initially put it there just to see how to implicitly get multiple return types working, but ill move that now. |
Awsome! ✨ |
Hi, I thought I'd give a crack at adding support for returning errors for the Security Schema checker.
I've never writen a proc macro before so let me know if there is a better way to implictly take a Option or Result without knowing what you're getting at compile time (I really tried to find out :()
Thanks!