/aosp_15_r20/external/rust/android-crates-io/crates/axum-core/src/extract/ |
D | request_parts.rs | 14 type Rejection = Infallible; typedef 16 async fn from_request(req: Request<B>, _: &S) -> Result<Self, Self::Rejection> { in from_request() argument 26 type Rejection = Infallible; typedef 28 async fn from_request_parts(parts: &mut Parts, _: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument 38 type Rejection = Infallible; typedef 40 async fn from_request_parts(parts: &mut Parts, _: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument 50 type Rejection = Infallible; typedef 52 async fn from_request_parts(parts: &mut Parts, _: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument 67 type Rejection = Infallible; typedef 69 async fn from_request_parts(parts: &mut Parts, _: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument [all …]
|
D | mod.rs | 51 type Rejection: IntoResponse; typedef 54 async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection>; in from_request_parts() argument 120 type Rejection: IntoResponse; typedef 123 async fn from_request(req: Request<B>, state: &S) -> Result<Self, Self::Rejection>; in from_request() argument 133 type Rejection = <Self as FromRequestParts<S>>::Rejection; typedef 135 async fn from_request(req: Request<B>, state: &S) -> Result<Self, Self::Rejection> { in from_request() argument 147 type Rejection = Infallible; typedef 152 ) -> Result<Option<T>, Self::Rejection> { in from_request_parts() 164 type Rejection = Infallible; typedef 166 async fn from_request(req: Request<B>, state: &S) -> Result<Option<T>, Self::Rejection> { in from_request() [all …]
|
D | tuple.rs | 12 type Rejection = Infallible; typedef 14 async fn from_request_parts(_: &mut Parts, _: &S) -> Result<(), Self::Rejection> { in from_request_parts()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/extract/ |
D | request_parts.rs | 93 type Rejection = Infallible; typedef 95 async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument 159 type Rejection = Infallible; typedef 161 async fn from_request(req: Request<B>, _state: &S) -> Result<Self, Self::Rejection> { in from_request() argument 220 type Rejection = Infallible; typedef 222 async fn from_request(req: Request<B>, _state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
D | raw_query.rs | 35 type Rejection = Infallible; typedef 37 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | state.rs | 355 type Rejection = Infallible; typedef 360 ) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | raw_form.rs | 45 type Rejection = RawFormRejection; typedef 47 async fn from_request(req: Request<B>, state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
D | host.rs | 31 type Rejection = HostRejection; typedef 33 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | query.rs | 57 type Rejection = QueryRejection; typedef 59 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | matched_path.rs | 112 type Rejection = MatchedPathRejection; typedef 114 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | connect_info.rs | 137 type Rejection = <Extension<Self> as FromRequestParts<S>>::Rejection; typedef 139 async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | multipart.rs | 69 type Rejection = MultipartRejection; typedef 71 async fn from_request(req: Request<B>, state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
D | ws.rs | 403 type Rejection = WebSocketUpgradeRejection; typedef 405 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum-core/src/ext_traits/ |
D | mod.rs | 21 type Rejection = Infallible; typedef 26 ) -> Result<Self, Self::Rejection> { in from_request_parts() argument 41 type Rejection = Infallible; typedef 46 ) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | request_parts.rs | 191 type Rejection = Infallible; typedef 193 async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | request.rs | 426 type Rejection = <String as FromRequest<(), B>>::Rejection; typedef 428 async fn from_request(mut req: Request<B>, state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/middleware/ |
D | from_extractor.rs | 326 type Rejection = StatusCode; in test_from_extractor() typedef 331 ) -> Result<Self, Self::Rejection> { in test_from_extractor() argument 378 type Rejection = std::convert::Infallible; in works_with_request_body_limit() typedef 383 ) -> Result<Self, Self::Rejection> { in works_with_request_body_limit() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/extract/path/ |
D | mod.rs | 159 type Rejection = PathRejection; typedef 161 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument 458 type Rejection = RawPathParamsRejection; typedef 460 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/ |
D | form.rs | 75 type Rejection = FormRejection; typedef 77 async fn from_request(req: Request<B>, _state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
D | extension.rs | 81 type Rejection = ExtensionRejection; typedef 83 async fn from_request_parts(req: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | typed_header.rs | 62 type Rejection = TypedHeaderRejection; typedef 64 async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> { in from_request_parts() argument
|
D | json.rs | 111 type Rejection = JsonRejection; typedef 113 async fn from_request(req: Request<B>, state: &S) -> Result<Self, Self::Rejection> { in from_request() argument
|
/aosp_15_r20/external/federated-compute/fcp/client/ |
H A D | federated_protocol.h | 113 struct Rejection {}; struct
|