[][src]Struct grin_api::Router

pub struct Router { /* fields omitted */ }

Methods

impl Router[src]

pub fn new() -> Router[src]

pub fn add_middleware(&mut self, mw: HandlerObj)[src]

pub fn add_route(
    &mut self,
    route: &'static str,
    value: HandlerObj
) -> Result<&mut Node, RouterError>
[src]

pub fn get(
    &self,
    path: &str
) -> Result<impl Iterator<Item = HandlerObj>, RouterError>
[src]

Trait Implementations

impl Clone for Router[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Service for Router[src]

type ReqBody = Body

The Payload body of the http::Request.

type ResBody = Body

The Payload body of the http::Response.

type Error = Error

The error type that can occur within this Service. Read more

type Future = ResponseFuture

The Future returned by this Service.

fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]

Returns Ready when the service is able to process requests. Read more

impl NewService for Router[src]

type ReqBody = Body

The Payload body of the http::Request.

type ResBody = Body

The Payload body of the http::Response.

type Error = Error

The error type that can be returned by Services.

type InitError = Error

The error type that can be returned when creating a new Service.

type Service = Router

The resolved Service from new_service().

type Future = Box<dyn Future<Item = Self::Service, Error = Self::InitError> + Send>

The future returned from new_service of a Service.

Auto Trait Implementations

impl Send for Router

impl Unpin for Router

impl Sync for Router

impl !UnwindSafe for Router

impl !RefUnwindSafe for Router

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Send + Sync + Clone

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<N, Ctx> MakeService<Ctx> for N where
    N: NewService
[src]

type ReqBody = <N as NewService>::ReqBody

The Payload body of the http::Request.

type ResBody = <N as NewService>::ResBody

The Payload body of the http::Response.

type Error = <N as NewService>::Error

The error type that can be returned by Services.

type Service = <N as NewService>::Service

The resolved Service from new_service().

type Future = <N as NewService>::Future

The future returned from new_service of a Service.

type MakeError = <N as NewService>::InitError

The error type that can be returned when creating a new Service.

impl<F, R, S> NewService for F where
    F: Fn() -> R,
    R: IntoFuture<Item = S>,
    S: Service,
    <R as IntoFuture>::Error: Into<Box<dyn Error + 'static + Sync + Send>>, 
[src]

type ReqBody = <S as Service>::ReqBody

The Payload body of the http::Request.

type ResBody = <S as Service>::ResBody

The Payload body of the http::Response.

type Error = <S as Service>::Error

The error type that can be returned by Services.

type Service = S

The resolved Service from new_service().

type Future = <R as IntoFuture>::Future

The future returned from new_service of a Service.

type InitError = <R as IntoFuture>::Error

The error type that can be returned when creating a new Service.