Home
last modified time | relevance | path

Searched refs:into_accept_encoding_header_value (Results 1 – 2 of 2) sorted by relevance

/tonic/tonic/src/codec/
H A Dcompression.rs48 pub(crate) fn into_accept_encoding_header_value(self) -> Option<http::HeaderValue> { in into_accept_encoding_header_value() method
170 .into_accept_encoding_header_value() in from_encoding_header()
323 assert!(encodings.into_accept_encoding_header_value().is_none()); in convert_none_into_header_value()
335 assert_eq!(encodings.into_accept_encoding_header_value().unwrap(), GZIP); in convert_gzip_into_header_value()
341 assert_eq!(encodings.into_accept_encoding_header_value().unwrap(), GZIP); in convert_gzip_into_header_value()
353 assert_eq!(encodings.into_accept_encoding_header_value().unwrap(), ZSTD); in convert_zstd_into_header_value()
359 assert_eq!(encodings.into_accept_encoding_header_value().unwrap(), ZSTD); in convert_zstd_into_header_value()
374 encodings.into_accept_encoding_header_value().unwrap(), in convert_compression_encodings_into_header_value()
387 encodings.into_accept_encoding_header_value().unwrap(), in convert_compression_encodings_into_header_value()
/tonic/tonic/src/client/
H A Dgrpc.rs417 .into_accept_encoding_header_value() in prepare_request()