missing derives

This commit is contained in:
Greg Johnston 2024-01-19 18:21:57 -05:00
parent 70ec0c2d0a
commit 2092c40bc7

View file

@ -61,7 +61,18 @@ impl From<ServerFnError> for Error {
/// An empty value indicating that there is no custom error type associated
/// with this server function.
#[derive(Debug, Deserialize, Serialize, Clone, Copy)]
#[derive(
Debug,
Deserialize,
Serialize,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
Clone,
Copy,
)]
pub struct NoCustomError;
// Implement `Display` for `NoCustomError`