We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a7fe61 commit fb945a9Copy full SHA for fb945a9
src/notification.rs
@@ -1,7 +1,9 @@
1
use super::*;
2
3
+use serde::{de::DeserializeOwned, Serialize};
4
+
5
pub trait Notification {
- type Params;
6
+ type Params: DeserializeOwned + Serialize;
7
const METHOD: &'static str;
8
}
9
src/request.rs
@@ -1,8 +1,10 @@
pub trait Request {
- type Result;
+ type Result: DeserializeOwned + Serialize;
10
0 commit comments