Lines Matching defs:MethodRouter
517 pub struct MethodRouter<S = (), B = Body, E = Infallible> { struct
518 get: MethodEndpoint<S, B, E>,
519 head: MethodEndpoint<S, B, E>,
520 delete: MethodEndpoint<S, B, E>,
521 options: MethodEndpoint<S, B, E>,
522 patch: MethodEndpoint<S, B, E>,
523 post: MethodEndpoint<S, B, E>,
524 put: MethodEndpoint<S, B, E>,
525 trace: MethodEndpoint<S, B, E>,
526 fallback: Fallback<S, B, E>,
527 allow_header: AllowHeader,
556 impl<S, B, E> fmt::Debug for MethodRouter<S, B, E> { implementation
573 impl<S, B> MethodRouter<S, B, Infallible> impl
635 impl<B> MethodRouter<(), B, Infallible> impl
709 impl<S, B, E> MethodRouter<S, B, E> implementation
1152 impl<S, B, E> Clone for MethodRouter<S, B, E> { implementation
1169 impl<S, B, E> Default for MethodRouter<S, B, E> implementation
1244 impl<B, E> Service<Request<B>> for MethodRouter<(), B, E> implementation
1263 impl<S, B> Handler<(), S, B> for MethodRouter<S, B> implementation