rspc 0.4.1

A blazing fast and easy to use TRPC server for Rust.
Documentation
1
2
3
4
5
6
7
use rspc_procedure::ProcedureError;
use specta::Type;

// TODO: Drop bounds on this cause they can be added at the impl.
pub trait Error: Type + 'static {
    fn into_procedure_error(self) -> ProcedureError;
}