aws_http/
content_encoding.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/// Use aws_runtime::content_encoding::header_value instead.
7#[deprecated(
8    since = "0.60.2",
9    note = "Use aws_runtime::content_encoding::header_value instead."
10)]
11pub mod header_value {
12    /// Use aws_runtime::content_encoding::header_value::AWS_CHUNKED instead.
13    #[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/// Use aws_runtime::content_encoding::AwsChunkedBodyOption instead.
21#[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/// Use aws_runtime::content_encoding::AwsChunkedBody instead.
28#[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>;