Searched defs:MethodRouter (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/ |
D | method_routing.rs | 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>, [all …]
|
D | mod.rs | 487 MethodRouter(MethodRouter<S, B>), enumerator
|