[][src]Struct jsonrpc_v2::With

pub struct With<T, S, P> { /* fields omitted */ }

Trait Implementations

impl<T, S, P> Method<S> for With<T, S, P> where
    T: FromRequest<S> + 'static,
    P: DeserializeOwned,
    P: 'static + Send + Sync,
    S: 'static + Send + Sync
[src]

impl<S, P, FN, I, E, FS, T> From<FN> for With<T, S, P> where
    T: FromRequest<S> + 'static,
    S: 'static,
    P: DeserializeOwned,
    FN: Fn(Params<P>, T) -> I + 'static + Send + Sync,
    I: IntoFuture<Item = FS, Error = E> + 'static,
    I::Future: 'static,
    FS: Serialize + Send + 'static,
    E: Into<Error>, 
[src]

Auto Trait Implementations

impl<T, S, P> Send for With<T, S, P> where
    S: Send

impl<T, S, P> Sync for With<T, S, P> where
    S: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T