aws_http/
content_encoding.rs1#[deprecated(
8 since = "0.60.2",
9 note = "Use aws_runtime::content_encoding::header_value instead."
10)]
11pub mod header_value {
12 #[deprecated(
14 since = "0.60.2",
15 note = "Use aws_runtime::content_encoding::header_value::AWS_CHUNKED instead."
16 )]
17 pub const AWS_CHUNKED: &str = "aws-chunked";
18}
19
20#[deprecated(
22 since = "0.60.2",
23 note = "Use aws_runtime::content_encoding::AwsChunkedBodyOptions instead."
24)]
25pub type AwsChunkedBodyOptions = aws_runtime::content_encoding::AwsChunkedBodyOptions;
26
27#[deprecated(
29 since = "0.60.2",
30 note = "Use aws_runtime::content_encoding::AwsChunkedBody instead."
31)]
32pub type AwsChunkedBody<Inner> = aws_runtime::content_encoding::AwsChunkedBody<Inner>;