Home
last modified time | relevance | path

Searched refs:into_http (Results 1 – 8 of 8) sorted by relevance

/tonic/tonic/src/
H A Dresponse.rs82 pub(crate) fn into_http(self) -> http::Response<T> { in into_http() method
152 let http_response = r.into_http(); in reserved_headers_are_excluded()
H A Drequest.rs174 pub(crate) fn into_http( in into_http() method
456 let http_request = r.into_http( in reserved_headers_are_excluded()
H A Dstatus.rs578 pub fn into_http<B: Default>(self) -> http::Response<B> { in into_http() method
/tonic/tonic/src/service/
H A Dinterceptor.rs148 let req = req.into_http(uri, method, version, SanitizeHeaders::No); in call()
203 let (parts, ()) = status.take().unwrap().into_http::<()>().into_parts(); in poll()
311 let expected = Status::permission_denied(message).into_http::<()>(); in handles_intercepted_status_as_response()
H A Drecover_error.rs100 let (parts, ()) = status.into_http::<()>().into_parts(); in poll()
H A Drouter.rs139 let (parts, ()) = Status::unimplemented("").into_http::<()>().into_parts(); in unimplemented()
/tonic/tonic/src/server/
H A Dgrpc.rs20 Err(status) => return status.into_http(),
431 let (mut parts, body) = response.into_http().into_parts(); in map_response()
/tonic/tonic/src/client/
H A Dgrpc.rs390 let mut request = request.into_http( in prepare_request()