Replies: 1 comment 2 replies
-
The trick is ti implement |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to use an error type other than
tonic::Status
as an error? My app defines its own typeAppError
, implementing all theFrom
instances that allow me to use the?
operator. It worked well with Actix-Web framework. In Tonic, however, every call that returns an Err will get this additional construct:Is there a way to avoid this?
Beta Was this translation helpful? Give feedback.
All reactions