[−][src]Struct grin_api::Router
Methods
impl Router[src]
impl Routerpub fn new() -> Router[src]
pub fn new() -> Routerpub fn add_middleware(&mut self, mw: HandlerObj)[src]
pub fn add_middleware(&mut self, mw: HandlerObj)pub fn add_route(
&mut self,
route: &'static str,
value: HandlerObj
) -> Result<&mut Node, RouterError>[src]
pub fn add_route(
&mut self,
route: &'static str,
value: HandlerObj
) -> Result<&mut Node, RouterError>pub fn get(
&self,
path: &str
) -> Result<impl Iterator<Item = HandlerObj>, RouterError>[src]
pub fn get(
&self,
path: &str
) -> Result<impl Iterator<Item = HandlerObj>, RouterError>Trait Implementations
impl Clone for Router[src]
impl Clone for Routerfn clone(&self) -> Router[src]
fn clone(&self) -> Routerfn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Service for Router[src]
impl Service for Routertype 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 call(&mut self, req: Request<Self::ReqBody>) -> Self::Future[src]
fn call(&mut self, req: Request<Self::ReqBody>) -> Self::Futureimpl NewService for Router[src]
impl NewService for Routertype 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.
fn new_service(&self) -> Self::Future[src]
fn new_service(&self) -> Self::FutureAuto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut Timpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeIdimpl<T> CloneAny for T where
T: Clone + Any,
impl<T> CloneAny for T where
T: Clone + Any, fn clone_any(&self) -> Box<dyn CloneAny + 'static>
fn clone_any(&self) -> Box<dyn CloneAny + 'static>fn clone_any_send(&self) -> Box<dyn CloneAny + 'static + Send> where
T: Send,
fn clone_any_send(&self) -> Box<dyn CloneAny + 'static + Send> where
T: Send, fn clone_any_sync(&self) -> Box<dyn CloneAny + 'static + Sync> where
T: Sync,
fn clone_any_sync(&self) -> Box<dyn CloneAny + 'static + Sync> where
T: Sync, fn clone_any_send_sync(&self) -> Box<dyn CloneAny + 'static + Sync + Send> where
T: Send + Sync,
fn clone_any_send_sync(&self) -> Box<dyn CloneAny + 'static + Sync + Send> where
T: Send + Sync, impl<T> UnsafeAny for T where
T: Any,
impl<T> UnsafeAny for T where
T: Any, impl<T> SafeBorrow for T where
T: ?Sized,
impl<T> SafeBorrow for T where
T: ?Sized, fn borrow_replacement(ptr: &T) -> &T
fn borrow_replacement(ptr: &T) -> &Timpl<'a, T> DefaultFeatures for T where
T: 'a + Send + Sync + Clone,
impl<'a, T> DefaultFeatures for T where
T: 'a + Send + Sync + Clone, fn clone_boxed(&self) -> Box<dyn DefaultFeatures<'a> + 'a>
fn clone_boxed(&self) -> Box<dyn DefaultFeatures<'a> + 'a>fn self_address_mut(&mut self) -> *mut ()
fn self_address_mut(&mut self) -> *mut ()impl<'a, T> NonSyncFeatures for T where
T: 'a + Clone,
impl<'a, T> NonSyncFeatures for T where
T: 'a + Clone, fn clone_boxed(&self) -> Box<dyn NonSyncFeatures<'a> + 'a>
fn clone_boxed(&self) -> Box<dyn NonSyncFeatures<'a> + 'a>fn self_address_mut(&mut self) -> *mut ()
fn self_address_mut(&mut self) -> *mut ()impl<T> Erased for T
impl<T> Erased for Timpl<T> Same for T
impl<T> Same for Ttype Output = T
Should always be Self
impl<N, Ctx> MakeService for N where
N: NewService, [src]
impl<N, Ctx> MakeService for N where
N: NewService, 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.
fn make_service(&mut self, Ctx) -> <N as MakeService<Ctx>>::Future[src]
fn make_service(&mut self, Ctx) -> <N as MakeService<Ctx>>::Futureimpl<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]
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>>, 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.
fn new_service(&self) -> <F as NewService>::Future[src]
fn new_service(&self) -> <F as NewService>::Future