simplify bouds
This commit is contained in:
@@ -16,7 +16,7 @@ use ::{
|
|||||||
pub struct Responder<R: ClientRequest> {
|
pub struct Responder<R: ClientRequest> {
|
||||||
id: u64,
|
id: u64,
|
||||||
bomb: DropBomb,
|
bomb: DropBomb,
|
||||||
ph: PhantomData<R>,
|
ph: PhantomData<fn(R)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<R: ClientRequest> Responder<R>
|
impl<R: ClientRequest> Responder<R>
|
||||||
|
|||||||
@@ -7,14 +7,14 @@ pub use languageserver_types::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
pub trait ClientRequest: Send + 'static {
|
pub trait ClientRequest: 'static {
|
||||||
type Params: DeserializeOwned + Send + 'static;
|
type Params: DeserializeOwned + Send + 'static;
|
||||||
type Result: Serialize + Send + 'static;
|
type Result: Serialize + Send + 'static;
|
||||||
const METHOD: &'static str;
|
const METHOD: &'static str;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> ClientRequest for T
|
impl<T> ClientRequest for T
|
||||||
where T: Request + Send + 'static,
|
where T: Request + 'static,
|
||||||
T::Params: DeserializeOwned + Send + 'static,
|
T::Params: DeserializeOwned + Send + 'static,
|
||||||
T::Result: Serialize + Send + 'static,
|
T::Result: Serialize + Send + 'static,
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user