[][src]Struct roa_jsonrpc::RpcEndpoint

pub struct RpcEndpoint<R>(pub Server<R>);

A wrapper for jsonrpc_v2::Server, implemented roa::Endpoint.

Trait Implementations

impl<'a, S, R> Endpoint<'a, S> for RpcEndpoint<R> where
    S: State,
    R: Router + Sync + Send + 'static, 
[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for RpcEndpoint<R>

impl<R> Send for RpcEndpoint<R> where
    R: Send

impl<R> Sync for RpcEndpoint<R> where
    R: Sync

impl<R> Unpin for RpcEndpoint<R> where
    R: Unpin

impl<R> !UnwindSafe for RpcEndpoint<R>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, S, T, F> Endpoint<'a, S> for T where
    F: 'a + Future<Output = Result<(), Status>>,
    S: 'a,
    T: 'static + Send + Sync + Fn(&'a mut Context<S>) -> F, 

impl<S, T> EndpointExt<S> for T where
    T: for<'a> Endpoint<'a, S>, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.