A helper trait to assist with passing error types through return tonic::Status
messages.
Usage
This works with the thiserror crates, but using that is not required. If you
are not using thiserror then at the moment you will need to manually implement
std::fmt::Display for your type. Your error type will also need to derive
serde::{Serialize, Deserialize}.
In order to use this, you will need to #[derive(TonicError)] on your error type.
The TonicError trait provides two functions that will be able to convert your
type to and from a tonic::Status. fn to_status(&self) -> Status and fn from_status(s: &'de Status) -> Result<Self, TonicErrorError> - the
TonicErrorError is used to wrap serde and tonic errors, as well as if the
incorrect Status code is set, or the key is not a part of the Status
metadata map.
These examples are taken from the included examples.
Server Side
async
Client Side
pub async
Example
See the tonic-error-example subdirectory in this repo for a working
client/server example.
License
This is released under the Apache 2.0 license.