Searched refs:append_header (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/common/ |
H A D | part.rs | 90 pub(crate) fn append_header<N, V>( in append_header() method 305 pub fn append_header<N, V>(mut self, name: N, value: V) -> Self in append_header() method 313 inner.append_header(name, value)?; in append_header() 487 .append_header("accept", "text/html") in ut_mime_part_builder_append_header() 488 .append_header("accept", "text/plain"); in ut_mime_part_builder_append_header()
|
H A D | multi.rs | 166 pub(crate) fn append_header<N, V>( in append_header() method 413 pub fn append_header<N, V>(mut self, name: N, value: V) -> Self in append_header() method 421 inner.append_header(name, value)?; in append_header()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
H A D | request.rs | 190 pub fn append_header(mut self, name: &str, value: &str) -> Self { in append_header() method 191 self.0 = self.0.append_header(name, value); in append_header() 438 let builder = RequestBuilder::default().append_header("name", "value"); in ut_client_request_builder_default() 443 .append_header("name", "value") in ut_client_request_builder_default()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/request/ |
H A D | mod.rs | 613 pub fn append_header<N, V>(mut self, name: N, value: V) -> Self in append_header() method 721 .append_header("ACCEPT", "application/xml") in ut_request_builder_build()
|
/ohos5.0/commonlibrary/rust/ylong_http/docs/ |
H A D | user_guide.md | 105 - `append_header`: 追加请求头字段
|