Searched defs:IntoResponse (Results 1 – 12 of 12) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/axum-core/src/response/ |
D | into_response.rs | 126 pub trait IntoResponse { interface 139 impl IntoResponse for () { impl 232 impl IntoResponse for &'static str { impl 345 impl IntoResponse for &'static [u8] { impl 351 impl<const N: usize> IntoResponse for &'static [u8; N] { impl 357 impl<const N: usize> IntoResponse for [u8; N] { impl 380 impl<R> IntoResponse for (StatusCode, R) impl 407 impl<K, V, const N: usize> IntoResponse for [(K, V); N] impl 419 impl<R> IntoResponse for (http::response::Parts, R) impl 429 impl<R> IntoResponse for (http::response::Response<()>, R) impl [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/response/ |
D | mod.rs | 86 async fn impl_trait_both(uri: Uri) -> Result<impl IntoResponse, impl IntoResponse> { in impl_trait_result_works() 94 async fn impl_trait(uri: Uri) -> impl IntoResponse { in impl_trait_result_works()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/ |
D | mod.rs | 132 T::Response: IntoResponse, in route_service() 176 T::Response: IntoResponse, in nest_service() 286 T::Response: IntoResponse, in fallback_service()
|
D | path_router.rs | 93 T::Response: IntoResponse, in route_service() 204 T::Response: IntoResponse, in nest_service()
|
D | method_routing.rs | 1560 S::Response: IntoResponse, in call()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/ |
D | typed_header.rs | 175 ) -> impl IntoResponse { in typed_header()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/tests/ |
D | merge.rs | 222 ) -> impl IntoResponse { in all_the_uris()
|
D | nest.rs | 297 async fn handler(Extension(Uri(middleware_uri)): Extension<Uri>) -> impl IntoResponse { in outer_middleware_still_see_whole_url()
|
D | mod.rs | 830 fn map_response<B>(_res: Response<B>) -> Result<Response<B>, impl IntoResponse> { in layer_response_into_response()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/extract/ |
D | multipart.rs | 321 async fn handle(mut multipart: Multipart) -> impl IntoResponse { in content_type_with_encoding()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/handler/ |
D | mod.rs | 410 async fn handle(body: String) -> impl IntoResponse { in handler_into_service()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/middleware/ |
D | from_fn.rs | 400 async fn insert_header<B>(mut req: Request<B>, next: Next<B>) -> impl IntoResponse { in basic()
|