Struct jsonrpc_core::middleware::Noop [−][src]
pub struct Noop;
No-op middleware implementation
Trait Implementations
impl<M: Metadata> Middleware<M> for Noop
[src]
impl<M: Metadata> Middleware<M> for Noop
[src]type Future = NoopFuture
A returned request future.
type CallFuture = NoopCallFuture
A returned call future.
fn on_request<F, X>(
&self,
request: Request,
meta: M,
next: F
) -> Either<Self::Future, X> where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
[src]
&self,
request: Request,
meta: M,
next: F
) -> Either<Self::Future, X> where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
fn on_call<F, X>(
&self,
call: Call,
meta: M,
next: F
) -> Either<Self::CallFuture, X> where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,
[src]
&self,
call: Call,
meta: M,
next: F
) -> Either<Self::CallFuture, X> where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,