Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/response/
H A Dmod.rs69 pub fn into_parts(self) -> (ResponsePart, T) { in into_parts()
74 pub fn from_raw_parts(part: ResponsePart, body: T) -> Response<T> { in from_raw_parts()
94 pub struct ResponsePart { struct
115 /// 1. Creates a `ResponsePart` by calling `ResponseDecoder::decode`. argument
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h1/response/
H A Ddecoder.rs215 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in decode()
230 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in version_phase()
257 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in status_code_phase()
278 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in reason_phase()
289 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in status_crlf_phase()
300 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in header_phase_with_init()
320 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in header_phase()
330 ) -> Result<Option<(ResponsePart, &'a [u8])>, HttpError> { in blank_line_phase()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp1.rs171 part: ResponsePart, in decode_response()