[][src]Struct exonum::api::NamedWith

pub struct NamedWith<Q, I, R, F, K> {
    pub name: String,
    pub inner: With<Q, I, R, F>,
    // some fields omitted
}

API Endpoint extractor that also contains endpoint name and its kind.

Fields

name: String

Endpoint name.

inner: With<Q, I, R, F>

Extracted endpoint handler.

Methods

impl<Q, I, R, F, K> NamedWith<Q, I, R, F, K>
[src]

pub fn new<S, W>(name: S, inner: W) -> Self where
    S: Into<String>,
    W: Into<With<Q, I, R, F>>, 
[src]

Creates a new instance from the given handler.

Trait Implementations

impl<Q, I, F> From<NamedWith<Q, I, Result<I, Error>, F, Immutable>> for RequestHandler where
    F: for<'r> Fn(&'r ServiceApiState, Q) -> Result<I> + 'static + Send + Sync + Clone,
    Q: DeserializeOwned + 'static,
    I: Serialize + 'static, 
[src]

impl<Q, I, F> From<NamedWith<Q, I, Result<I, Error>, F, Mutable>> for RequestHandler where
    F: for<'r> Fn(&'r ServiceApiState, Q) -> Result<I> + 'static + Send + Sync + Clone,
    Q: DeserializeOwned + 'static,
    I: Serialize + 'static, 
[src]

impl<Q, I, F> From<NamedWith<Q, I, Box<dyn Future<Item = I, Error = Error> + 'static>, F, Immutable>> for RequestHandler where
    F: for<'r> Fn(&'r ServiceApiState, Q) -> FutureResult<I> + 'static + Clone + Send + Sync,
    Q: DeserializeOwned + 'static,
    I: Serialize + 'static, 
[src]

impl<Q, I, F> From<NamedWith<Q, I, Box<dyn Future<Item = I, Error = Error> + 'static>, F, Mutable>> for RequestHandler where
    F: for<'r> Fn(&'r ServiceApiState, Q) -> FutureResult<I> + 'static + Clone + Send + Sync,
    Q: DeserializeOwned + 'static,
    I: Serialize + 'static, 
[src]

impl<Q: Debug, I: Debug, R: Debug, F: Debug, K: Debug> Debug for NamedWith<Q, I, R, F, K>
[src]

Auto Trait Implementations

impl<Q, I, R, F, K> Send for NamedWith<Q, I, R, F, K> where
    F: Send,
    I: Send,
    K: Send,
    Q: Send,
    R: Send

impl<Q, I, R, F, K> Sync for NamedWith<Q, I, R, F, K> where
    F: Sync,
    I: Sync,
    K: Sync,
    Q: Sync,
    R: Sync

Blanket Implementations

impl<T> From for T
[src]

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

impl<T, U> TryFrom for T where
    T: From<U>, 
[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> BorrowMut 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> Erased for T

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self