Home
last modified time | relevance | path

Searched defs:MatchedPath (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/extract/
Dmatched_path.rs98 pub struct MatchedPath(pub(crate) Arc<str>); struct
100 impl MatchedPath { impl
108 impl<S> FromRequestParts<S> for MatchedPath implementation
235 matched_path: Option<MatchedPath>, in cannot_extract_nested_matched_path_in_middleware()
255 matched_path: Option<MatchedPath>, in can_extract_nested_matched_path_in_middleware_using_nest()
308 async fn extract_matched_path<B>(matched_path: MatchedPath, req: Request<B>) -> Request<B> { in can_extract_nested_matched_path_in_middleware_on_nested_router()
349 async fn handler(path: Option<MatchedPath>) { in extracting_on_nested_handler()
383 async fn handler(path: Option<MatchedPath>, req: Request<Body>) { in cant_extract_in_fallback()