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; }