mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
missing derives
This commit is contained in:
parent
70ec0c2d0a
commit
2092c40bc7
1 changed files with 12 additions and 1 deletions
|
@ -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`
|
||||
|
|
Loading…
Reference in a new issue