Skip to content

Commit fb945a9

Browse files
committedFeb 29, 2020
feat: Add DeserializeOwned + Serialize bounds on request/notifications
This will always be true since otherwise there would be no way to send/receive the params or result. Fixes #140
1 parent 6a7fe61 commit fb945a9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎src/notification.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
use super::*;
22

3+
use serde::{de::DeserializeOwned, Serialize};
4+
35
pub trait Notification {
4-
type Params;
6+
type Params: DeserializeOwned + Serialize;
57
const METHOD: &'static str;
68
}
79

‎src/request.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
use super::*;
22

3+
use serde::{de::DeserializeOwned, Serialize};
4+
35
pub trait Request {
4-
type Params;
5-
type Result;
6+
type Params: DeserializeOwned + Serialize;
7+
type Result: DeserializeOwned + Serialize;
68
const METHOD: &'static str;
79
}
810

0 commit comments

Comments
 (0)
Please sign in to comment.